diff --git a/apps/dimentorin/src/app/(public)/profile/_components/contexts/profile-context.tsx b/apps/dimentorin/src/app/(public)/profile/_components/contexts/profile-context.tsx index 486299f..70ef3cc 100644 --- a/apps/dimentorin/src/app/(public)/profile/_components/contexts/profile-context.tsx +++ b/apps/dimentorin/src/app/(public)/profile/_components/contexts/profile-context.tsx @@ -3,9 +3,8 @@ import React, { createContext, useContext, useMemo, useCallback } from 'react'; import { useParams } from 'react-router-dom'; import { useQueryClient } from '@tanstack/react-query'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; import { - + useAuthStore, useUserMe, useUserById, useUpdateUserMe, diff --git a/apps/dimentorin/src/app/_hooks/use-google-login.ts b/apps/dimentorin/src/app/_hooks/use-google-login.ts index 7a8a96a..a37e0b2 100644 --- a/apps/dimentorin/src/app/_hooks/use-google-login.ts +++ b/apps/dimentorin/src/app/_hooks/use-google-login.ts @@ -1,7 +1,7 @@ import { useCallback } from 'react'; import { toast } from 'sonner'; import { useNavigate } from 'react-router-dom'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useAuthStore } from '@imphnen-frontend-service/service'; export interface GoogleLoginResponse { access_token?: string; diff --git a/apps/dimentorin/src/app/auth/google-callback/page.tsx b/apps/dimentorin/src/app/auth/google-callback/page.tsx index 4346125..12c4c16 100644 --- a/apps/dimentorin/src/app/auth/google-callback/page.tsx +++ b/apps/dimentorin/src/app/auth/google-callback/page.tsx @@ -1,7 +1,6 @@ import { FC, ReactElement, useEffect } from 'react'; import { useSearchParams, useNavigate } from 'react-router-dom'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; -import { useGoogleCallback } from '@imphnen-frontend-service/service'; +import { useGoogleCallback, useAuthStore } from '@imphnen-frontend-service/service'; import { toast } from 'sonner'; export const GoogleCallbackPage: FC = (): ReactElement => { diff --git a/apps/gacha/src/app/_hooks/use-login.ts b/apps/gacha/src/app/_hooks/use-login.ts index 05ed626..c0d64dc 100644 --- a/apps/gacha/src/app/_hooks/use-login.ts +++ b/apps/gacha/src/app/_hooks/use-login.ts @@ -3,9 +3,9 @@ import { authLoginSchema, TLoginRequest, usePostLogin, + useAuthStore, } from '@imphnen-frontend-service/service'; import { zodResolver } from '@hookform/resolvers/zod'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; import { toast } from 'sonner'; import { useNavigate } from 'react-router'; import { useVerifyEmail } from './use-verify-email'; diff --git a/apps/hackathon/src/app/auth/callback/page.tsx b/apps/hackathon/src/app/auth/callback/page.tsx index 28c87ea..6d5978c 100644 --- a/apps/hackathon/src/app/auth/callback/page.tsx +++ b/apps/hackathon/src/app/auth/callback/page.tsx @@ -1,7 +1,6 @@ import { FC, ReactElement, useEffect, useState, useRef } from 'react'; import { useNavigate } from 'react-router'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; -import { supabase } from '@imphnen-frontend-service/service'; +import { useAuthStore, supabase } from '@imphnen-frontend-service/service'; import { toast } from 'sonner'; const CallbackPage: FC = (): ReactElement => { diff --git a/apps/hackathon/src/app/auth/forgot-password/page.tsx b/apps/hackathon/src/app/auth/forgot-password/page.tsx new file mode 100644 index 0000000..97ac36b --- /dev/null +++ b/apps/hackathon/src/app/auth/forgot-password/page.tsx @@ -0,0 +1,125 @@ +import { useState } from 'react'; +import { supabase } from '@imphnen-frontend-service/service'; +import { Link } from 'react-router'; +import { toast } from 'sonner'; + +export default function ForgotPasswordPage() { + const [email, setEmail] = useState(''); + const [isLoading, setIsLoading] = useState(false); + const [emailSent, setEmailSent] = useState(false); + + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault(); + + if (!email) { + toast.error('Please enter your email'); + return; + } + + try { + setIsLoading(true); + + const { error } = await supabase.auth.resetPasswordForEmail(email, { + redirectTo: `${window.location.origin}/auth/reset-password`, + }); + + if (error) { + throw error; + } + + setEmailSent(true); + toast.success('Password reset email sent! Check your inbox.'); + } catch (err) { + console.error('Failed to send reset email:', err); + toast.error((err as Error).message || 'Failed to send reset email'); + } finally { + setIsLoading(false); + } + }; + + if (emailSent) { + return ( +
+
+
+
+ +
+

+ Check Your Email +

+

+ We've sent a password reset link to {email} +

+
+ +
+

+ Click the link in the email to reset your password. The link will expire in 1 hour. +

+ + + + + + +
+
+
+ ); + } + + return ( +
+
+
+

+ Forgot Password? +

+

+ No worries, we'll send you reset instructions +

+
+ +
+
+ + setEmail(e.target.value)} + placeholder="your@email.com" + disabled={isLoading} + className="w-full px-4 py-2.5 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent disabled:bg-gray-100 disabled:cursor-not-allowed" + required + /> +
+ + +
+ +
+ + ← Back to Login + +
+
+
+ ); +} diff --git a/apps/hackathon/src/app/auth/login/page.tsx b/apps/hackathon/src/app/auth/login/page.tsx index 33aae9a..783934f 100644 --- a/apps/hackathon/src/app/auth/login/page.tsx +++ b/apps/hackathon/src/app/auth/login/page.tsx @@ -1,8 +1,7 @@ import { useState } from 'react'; -import { useGitHubAuth, useEmailAuth, supabase } from '@imphnen-frontend-service/service'; +import { useGitHubAuth, useEmailAuth, supabase, useAuthStore } from '@imphnen-frontend-service/service'; import { GithubOutlined } from '@ant-design/icons'; -import { useNavigate } from 'react-router'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useNavigate, Link } from 'react-router'; import { toast } from 'sonner'; export default function LoginPage() { @@ -143,9 +142,14 @@ export default function LoginPage() {
- +
+ + + Forgot password? + +
{ + // Check if we have a valid session (from the reset link) + supabase.auth.getSession().then(({ data: { session } }) => { + if (session) { + setIsValidToken(true); + } else { + toast.error('Invalid or expired reset link'); + setTimeout(() => navigate('/auth/forgot-password'), 2000); + } + }); + }, [navigate]); + + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault(); + + if (password !== confirmPassword) { + toast.error('Passwords do not match'); + return; + } + + if (password.length < 6) { + toast.error('Password must be at least 6 characters'); + return; + } + + try { + setIsLoading(true); + + const { error } = await supabase.auth.updateUser({ + password: password + }); + + if (error) { + throw error; + } + + toast.success('Password updated successfully!'); + + // Sign out and redirect to login + await supabase.auth.signOut(); + navigate('/auth/login'); + } catch (err) { + console.error('Failed to reset password:', err); + toast.error((err as Error).message || 'Failed to reset password'); + } finally { + setIsLoading(false); + } + }; + + if (!isValidToken) { + return ( +
+
+
+

Verifying reset link...

+
+
+ ); + } + + return ( +
+
+
+

+ Set New Password +

+

+ Enter your new password below +

+
+ +
+
+ + setPassword(e.target.value)} + placeholder="••••••••" + disabled={isLoading} + className="w-full px-4 py-2.5 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent disabled:bg-gray-100 disabled:cursor-not-allowed" + required + minLength={6} + /> +
+ +
+ + setConfirmPassword(e.target.value)} + placeholder="••••••••" + disabled={isLoading} + className="w-full px-4 py-2.5 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent disabled:bg-gray-100 disabled:cursor-not-allowed" + required + minLength={6} + /> +
+ + +
+
+
+ ); +} diff --git a/apps/hackathon/src/app/auth/signup/page.tsx b/apps/hackathon/src/app/auth/signup/page.tsx index 0a680bf..bc452fc 100644 --- a/apps/hackathon/src/app/auth/signup/page.tsx +++ b/apps/hackathon/src/app/auth/signup/page.tsx @@ -1,8 +1,7 @@ import { useState } from 'react'; -import { useGitHubAuth, useEmailAuth, supabase } from '@imphnen-frontend-service/service'; +import { useGitHubAuth, useEmailAuth, supabase, useAuthStore } from '@imphnen-frontend-service/service'; import { GithubOutlined } from '@ant-design/icons'; import { useNavigate } from 'react-router'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; import { toast } from 'sonner'; export default function SignupPage() { diff --git a/apps/hackathon/src/app/dashboard/page.tsx b/apps/hackathon/src/app/dashboard/page.tsx index 8d08f22..8ffc08c 100644 --- a/apps/hackathon/src/app/dashboard/page.tsx +++ b/apps/hackathon/src/app/dashboard/page.tsx @@ -1,8 +1,7 @@ import { FC, ReactElement } from 'react'; import { Button } from '@imphnen-frontend-service/ui/atoms'; import { Link, useNavigate } from 'react-router'; -import { useMyTeams, useMyInvitations, useRespondToInvitation, supabase } from '@imphnen-frontend-service/service'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useMyTeams, useMyInvitations, useRespondToInvitation, supabase, useAuthStore } from '@imphnen-frontend-service/service'; import { toast } from 'sonner'; const DashboardPage: FC = (): ReactElement => { diff --git a/apps/hackathon/src/app/layout.tsx b/apps/hackathon/src/app/layout.tsx index 8994705..3f79c52 100644 --- a/apps/hackathon/src/app/layout.tsx +++ b/apps/hackathon/src/app/layout.tsx @@ -37,12 +37,12 @@ export default function RootLayout() { console.error('[Layout] Session error:', error); } - // Public auth pages (login, signup) - allow unauthenticated access - const isPublicAuthPage = pathname === '/auth/login' || pathname === '/auth/signup'; + // Public auth pages (login, signup, forgot-password, reset-password) - allow unauthenticated access + const isPublicAuthPage = pathname === '/auth/login' || pathname === '/auth/signup' || pathname === '/auth/forgot-password' || pathname === '/auth/reset-password'; if (isPublicAuthPage) { - // If already authenticated, redirect to dashboard - if (session) { + // If already authenticated and not on password reset pages, redirect to dashboard + if (session && pathname !== '/auth/reset-password') { console.log('[Layout] Already authenticated, redirecting to dashboard'); navigate('/dashboard', { replace: true }); setIsChecking(false); diff --git a/apps/hackathon/src/app/onboarding/user/page.tsx b/apps/hackathon/src/app/onboarding/user/page.tsx index 35814b8..e003a7f 100644 --- a/apps/hackathon/src/app/onboarding/user/page.tsx +++ b/apps/hackathon/src/app/onboarding/user/page.tsx @@ -3,10 +3,8 @@ import { ControlledInputField } from '@imphnen-frontend-service/ui/organisms'; import { Button, Textarea } from '@imphnen-frontend-service/ui/atoms'; import { useNavigate } from 'react-router'; import { useForm, Controller } from 'react-hook-form'; -import { userOnboardingSchema, TUserOnboardingForm, useUpdateUserMe, useUploadAvatar } from '@imphnen-frontend-service/service'; +import { userOnboardingSchema, TUserOnboardingForm, useUpdateUserMe, useUploadAvatar, useUserMe, useAuthStore } from '@imphnen-frontend-service/service'; import { zodResolver } from '@hookform/resolvers/zod'; -import { useUserMe } from '@imphnen-frontend-service/service'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; const ROLE_OPTIONS = [ 'Frontend Developer', diff --git a/apps/hackathon/src/app/teams/[teamId]/chat/page.tsx b/apps/hackathon/src/app/teams/[teamId]/chat/page.tsx index ac303f3..ed58337 100644 --- a/apps/hackathon/src/app/teams/[teamId]/chat/page.tsx +++ b/apps/hackathon/src/app/teams/[teamId]/chat/page.tsx @@ -1,8 +1,7 @@ import { FC, ReactElement, useState, useRef, useEffect } from 'react'; import { Button } from '@imphnen-frontend-service/ui/atoms'; import { useNavigate, useParams } from 'react-router'; -import { useTeamById, useTeamMessages, useSendMessage, useDeleteMessage } from '@imphnen-frontend-service/service'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useTeamById, useTeamMessages, useSendMessage, useDeleteMessage, useAuthStore } from '@imphnen-frontend-service/service'; import { toast } from 'sonner'; const TeamChatPage: FC = (): ReactElement => { diff --git a/apps/hackathon/src/app/teams/[teamId]/edit/page.tsx b/apps/hackathon/src/app/teams/[teamId]/edit/page.tsx index fc883c4..026c140 100644 --- a/apps/hackathon/src/app/teams/[teamId]/edit/page.tsx +++ b/apps/hackathon/src/app/teams/[teamId]/edit/page.tsx @@ -3,8 +3,7 @@ import { ControlledInputField } from '@imphnen-frontend-service/ui/organisms'; import { Button, Textarea } from '@imphnen-frontend-service/ui/atoms'; import { useNavigate, useParams } from 'react-router'; import { useForm, Controller } from 'react-hook-form'; -import { teamUpdateSchema, TTeamUpdateForm, useUpdateTeam, useTeamById, ETeamVisibility, useUploadFile } from '@imphnen-frontend-service/service'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { teamUpdateSchema, TTeamUpdateForm, useUpdateTeam, useTeamById, ETeamVisibility, useUploadFile, useAuthStore } from '@imphnen-frontend-service/service'; import { zodResolver } from '@hookform/resolvers/zod'; const INDONESIAN_CITIES = [ diff --git a/apps/hackathon/src/app/teams/[teamId]/members/page.tsx b/apps/hackathon/src/app/teams/[teamId]/members/page.tsx index bf78a18..a0276ea 100644 --- a/apps/hackathon/src/app/teams/[teamId]/members/page.tsx +++ b/apps/hackathon/src/app/teams/[teamId]/members/page.tsx @@ -11,8 +11,8 @@ import { ETeamMemberStatus, inviteMemberSchema, TInviteMemberForm, + useAuthStore, } from '@imphnen-frontend-service/service'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; import { useForm } from 'react-hook-form'; import { zodResolver } from '@hookform/resolvers/zod'; diff --git a/apps/hackathon/src/app/teams/[teamId]/page.tsx b/apps/hackathon/src/app/teams/[teamId]/page.tsx index 83f7c7f..7872211 100644 --- a/apps/hackathon/src/app/teams/[teamId]/page.tsx +++ b/apps/hackathon/src/app/teams/[teamId]/page.tsx @@ -1,8 +1,7 @@ import { FC, ReactElement, useState } from 'react'; import { Button } from '@imphnen-frontend-service/ui/atoms'; import { Link, useParams, useNavigate } from 'react-router'; -import { useTeamById, useTeamMembers, useInviteMember, useTeamJoinRequests, useRespondToJoinRequest, ETeamMemberRole } from '@imphnen-frontend-service/service'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useTeamById, useTeamMembers, useInviteMember, useTeamJoinRequests, useRespondToJoinRequest, ETeamMemberRole, useAuthStore } from '@imphnen-frontend-service/service'; import { toast } from 'sonner'; const MAX_TEAM_MEMBERS = 5; diff --git a/apps/hackathon/src/app/teams/[teamId]/submit/page.tsx b/apps/hackathon/src/app/teams/[teamId]/submit/page.tsx index 1af4eea..1be3fcc 100644 --- a/apps/hackathon/src/app/teams/[teamId]/submit/page.tsx +++ b/apps/hackathon/src/app/teams/[teamId]/submit/page.tsx @@ -10,8 +10,8 @@ import { useTeamById, useTeamSubmission, useUploadFile, + useAuthStore, } from '@imphnen-frontend-service/service'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; import { zodResolver } from '@hookform/resolvers/zod'; const SubmitProjectPage: FC = (): ReactElement => { diff --git a/docs/extracted-users.csv b/docs/extracted-users.csv new file mode 100644 index 0000000..1ca6941 --- /dev/null +++ b/docs/extracted-users.csv @@ -0,0 +1,516 @@ +email,fullname,id +"rrrijal24@gmail.com","Rijal","0081ce77-2dd2-469c-8759-8d1259b6206c" +"zulhamrianto@gmail.com","","0176361f-e403-4aeb-a683-8aa58d1e51a4" +"akbarkurniawan790@gmail.com","Akbar Kurniawan","017917c0-7393-4620-9d17-bc8467f9c521" +"auliarestyazizah@gmail.com","","0293026a-dfbe-4380-89fa-e2d5729a5cea" +"alhadad.xyz@gmail.com","alhadad","0308f526-0dfe-4509-bee8-4aa217ec0a12" +"radithamzah12@gmail.com","dorrit","032c630c-8a20-40ec-b191-ba8e009ab538" +"pamungkas.ajiseno@gmail.com","Senoaji Pamungkas","0331921a-4009-4204-86af-5eb90d6773cf" +"gamingarisky@gmail.com","","05004e6b-9d5c-4a14-af97-496bcd55878b" +"bagoesrex@gmail.com","Bagus","058da640-ac05-498b-8618-f2c5a4455b90" +"rizkyseptian401@gmail.com","Moc Rizky Septian","05d98092-8528-4edf-8b23-9134d67f628b" +"excellchriatian12@gmail.com","Excell Christian","06f7158e-2218-4b61-8129-899bdaeb1eab" +"sofyanekafebriyanto@gmail.com","","07138a28-5e15-4c08-9325-0b17061d913f" +"baraskyke7@gmail.com","Barasky","07203a89-c58b-4df2-aeba-54b4977c8fc6" +"cukd3h.hynix@gmail.com","","073af6af-33aa-4067-820c-2213df0843b0" +"tsqf.h29@gmail.com","Muh Tsaqif Hafidz","073bb0a3-69b5-4b4d-8d47-e30b38690ef5" +"azranmu@gmail.com","M ASRAN","078e1f86-6ca1-4fc2-ab9d-a600a6c5adf0" +"gdsudiartika@gmail.com","Diar Sudiar","08b7eb15-dd74-4704-b8ec-d4e7dbc37c6e" +"alfiansa@proton.me","Aditia Akbar Putra A.","095a9662-4d57-4c76-ae28-8f3685a01d34" +"ichaaulia720@gmail.com","","09ab46a0-1394-4e41-9938-8f3df7f8bf99" +"naziq02@gmail.com","","09cacf8e-467d-4885-a792-11287b68d626" +"wahyuskull22@gmail.com","Wahyu SA","09dd11d7-4dae-4273-ba66-e313d82c7d52" +"sulthanzain28@gmail.com","Sulthan .Y","0a28758d-fbc3-4979-93ae-33011b3a9691" +"ivan04.android@gmail.com","","0a48d044-6e36-46b6-bd4e-bbf7d3f9519e" +"muklasputra222@gmail.com","Muklas Adi Putra","0ab605f9-d525-4e1b-b1ca-7b21da065aff" +"rojafadilah0203@gmail.com","Roja Fadilah","0b380e5f-26dc-41f0-914d-731d7ca00603" +"akmalkeisin@gmail.com","","0b55c37c-48ce-4721-a7bb-52d9913dfcee" +"bimasaktiramdani01@gmail.com","","0c1ddd78-5f93-4272-953b-4640cc769ab9" +"gajipgaming@gmail.com","Galih Aji Pangestu","0cb2e0f9-6afe-458b-afc9-3170bcc18fa4" +"pascalsanjaya34@gmail.com","Pascal","0d4f3960-509d-4ba4-8d03-5fc1c38a4071" +"hanifdwyputrasembiring@gmail.com","Hanif Dwy Putra S","0e87a0f3-5a96-4b87-8e04-e180ed2731ca" +"afreezap20@gmail.com","","0e9fcc3c-4a3f-43c9-bf4f-e4e4c342f7a0" +"profyonz@gmail.com","","0eb6f8b2-f10f-4fa7-bf66-a43ef14a8f63" +"kesavadananjaya@gmail.com","","0ec815c3-a256-4583-909d-b02655d7d09a" +"mdwikurniawan976@gmail.com","","0f0e2cb8-2c21-417a-a577-f5d0662a2efa" +"rickyrahmad2001@gmail.com","","0fa03bff-4be2-4c13-b687-688191c02955" +"dimasmaulanaichsan@gmail.com","Dimas Maulana Ichsan","0fc6770d-fac7-4118-8796-6cae1b18f880" +"rikiulir@gmail.com","Riki Ulir Niam","0fc99cb4-4495-405e-8b2f-3728404d7615" +"atmasusanto08@gmail.com","","100b63a9-7487-4553-b45d-afb2201e4492" +"alvarelkevin12@gmail.com","Muhammad Kevin Alvarel","114bebc7-2422-4c0a-9898-521f94739e7f" +"rayid1805@gmail.com","","118b7324-bfc1-45f7-9282-d0d7fee3510f" +"sjr16173@gmail.com","M. Salman Alfarisi","11dc3951-1a07-4937-bd75-2c29d2770c13" +"mhmmdarifrs@gmail.com","Muhammad Arif Rahmad","134cd84e-4d79-474a-8ccc-09d728ad3f61" +"2310512054@mahasiswa.upnvj.ac.id","Rafki Aulia Hazli ","15154e34-3c02-426a-b02e-003278334a29" +"fathamarizkinur@gmail.com","","151fa86a-5cec-4758-9824-a9d2ecd5385c" +"risyadraflan14@gmail.com","","1552a593-f8e3-4c80-833b-4c5017dea18f" +"fauziferdiansyahindo@gmail.com","","16a7eda3-4296-4754-b88e-dcf4cf61a0eb" +"amuhajir3126@gmail.com","MamadNewbie","16b7a5ea-e664-4de5-86f1-578b5f3cd28c" +"fdvkey@gmail.com","Bowo Pratama","1730c82d-369d-486d-b7cf-887be5383f8e" +"wahyusiakrom238@gmail.com","ademaswahyu","173e56ab-92cc-48dd-9b03-dc8fdca13fde" +"abiyuaflah135@gmail.com","Abiyu Aflah","18405a8a-9016-4db7-97fa-26ab32735df2" +"feryaryahidayat@gmail.com","Fery","19355ab7-f1cb-47c5-9d2d-5eeb9ee4dbff" +"rokimiftah@gmail.com","Roki Miftah Kamaludin","1973ee9d-2e18-46bc-b8df-272d61980a50" +"glen.tbjs@gmail.com","Jeki","197d5875-dc6f-4068-844d-657db670babc" +"khulafamanagement@gmail.com","","198b0b9f-a34d-410f-87cd-d19cfe02ff0c" +"12350110343@students.uin-suska.ac.id","","1a79c0ce-9119-4067-9f00-c91dd01db95e" +"rizalalfadlil@gmail.com","Hafidz Rizal Al-Fadlil","1aabe9b4-297a-4422-b01f-1b02369dc401" +"razinsyakib@gmail.com","Muhammad Razin Syakib","1b473465-ea92-4b48-9c2a-43c67cf45e01" +"dodysamarinda@gmail.com","","1b4cc185-9532-49b2-b0ac-9f03c1dcc045" +"superaseph@gmail.com","","1b97626f-bb01-457b-9638-7576e5af1683" +"ku.anime115@gmail.com","Muhamad Wisnu","1c88251f-951a-4470-a2eb-58118a75ee75" +"faizaalfa250@gmail.com","","1c903d4e-a741-42f9-b27c-37c5d4e9a704" +"wandgenius6@gmail.com","maulana adam","1d209d21-ef69-4bab-8796-cfa4cbf1fa20" +"aristiov@gmail.com","Aristio","1e0fd9f8-e7cc-4381-939d-0f1aac4a0510" +"adamabdillah20@gmail.com","Adam Abdillah","1e38dac1-a94c-4ac1-9ee8-8a53629e9be4" +"simarmatarafael11@gmail.com","","1ea5a152-5463-44b0-975a-3ed019e804b8" +"kurniadikiki508@gmail.com","","21054038-79d8-49a8-8daf-ca4e780cc09a" +"alif.ayana48@gmail.com","Alif Muhammad","21fe034a-a9f6-417d-a6ed-e8c26f3005b8" +"minanabdillah4@gmail.com","","22c19165-8c32-45f6-9e85-683a4aeaa2ec" +"gammertag31@gmail.com","","236035ab-a274-4f6f-869d-6aaaf761e659" +"abangiqi@gmail.com","","240ff65c-897c-40e7-aafd-d2dd1114ea66" +"meftah.mafazy@gmail.com","","27a09ee3-2c61-4b38-a9f9-1f2810488131" +"islahulkafaa@gmail.com","","289c5f8c-5e0f-4bca-8f66-7641d14a7bb0" +"zaidanabdulaziz03@gmail.com","Zaidan Abdul Aziz","29049370-3d6f-4ae3-b44a-fe9d4f6edb89" +"adigintings@gmail.com","Adi Primanda Ginting","2935f1f9-c070-422f-b9e0-b378b16a32c8" +"fadhil06akbar@gmail.com","","29ae041b-b96c-45d0-a0e2-256ccd8b2168" +"ilhamfiqri37@gmail.com","","29f3fcaa-9104-494e-844e-79d827f74a06" +"riski01.pku@gmail.com","","2a57227d-2920-4839-8849-93ef38a41b9e" +"bisnis.huruhara@gmail.com","","2ae31e65-4272-431b-bbc1-59158cc7cf11" +"luthlirik@gmail.com","luthfi","2b47f090-1c0f-4982-8893-c0b1af1409e6" +"zackyhokya045@gmail.com","","2bb1bf7f-cffb-4b1c-9171-a7e653fb6541" +"bayanalamahul3@gmail.com","","2c228e47-a6ad-47c4-984f-99b6e5e8a13d" +"nizaram4dhan@gmail.com","Nizar Alif Ramadhan","2cd4994b-ba50-43c1-9d78-f4311ef31108" +"fadhilakbar0612@gmail.com","","2cf73de4-90a4-4d1b-a8f0-748ab0a621e7" +"aryhidayatfebriana@gmail.com","Rizky Reza","2d0a00a8-2660-4b60-8de6-f85a6ce98b1d" +"hadiidandri2000@gmail.com","","2ea30f2a-fbeb-4af6-b727-bebb0b687939" +"ahmadirafif7@gmail.com","Rapip","2f08b18b-bd87-4d20-9923-26f4759a4b6e" +"rve27github@gmail.com","Radika","2f788a66-e34e-466a-bbfd-3de920711223" +"fikricf147@gmail.com","","311d81bf-5b5e-4519-a33b-cdd0ee0ecc82" +"ausathdzil@gmail.com","Ausath Ikram","31a21f59-ecea-4bea-9a7b-56dc92c00a12" +"jono210678@gmail.com","","34298723-449f-4b95-b6cb-1d7d5ab71540" +"rheatkhs@gmail.com","Febiadi Wisnu Akbar","34bad6e8-3372-4634-ac93-b10f8882bbb2" +"sntdashi@gmail.com","rawrzn","35159d0a-33cd-4c64-a36d-d37c97e595db" +"muhammadhidayat0278@gmail.com","","351fe76c-5a5c-4d5c-a546-f0dd7ccfec0f" +"111202213986@mhs.dinus.ac.id","","35930877-5702-4eab-9d47-87ccf4035583" +"khairulumam950@gmail.com","khairul umam","3631e3e5-3eac-4297-af3c-6d8648510471" +"muhammad.jibrilmuqoddas@gmail.com","Murphy Lawden","369f03f6-dbd3-49a0-af32-ebfb527624b3" +"rafibudiansyah@gmail.com","","37844c0a-f42b-4bdb-9731-ab9722de70dc" +"tongkorongankostpaksutha@gmail.com","","37d7c1ea-d063-4ceb-93ad-9c9784744516" +"gilangsukmw@gmail.com","","38a5bd5f-c462-424b-986b-db04df906813" +"muhammadhaikalaziz28@gmail.com","Kaal","38a738a0-3329-4001-bf88-05d4de6b11d3" +"cimicimicilung4868@gmail.com","Eka Revandi","38cce9e2-df1d-43a5-bf45-595e25744e16" +"rizqybelajar8@gmail.com","","397f8039-f1c9-42ee-88de-b9597caae518" +"syaefulloharnas16@gmail.com","Syaefulloh Arnas","398ae3d5-349e-44fd-9428-f9335f89c511" +"oppokunew19@gmail.com","","39d68abb-2502-4330-b475-51416bf5269c" +"hrfahrizzal@gmail.com","","3ade0045-eb6d-43c8-8781-ea8d281a464e" +"rizkyfadillah0890@gmail.com","Rizky Fadillah","3b04b506-ff39-4c2f-9f8f-182c62e4b6f4" +"syahidizanagi@gmail.com","","3b2fb3a3-9b55-4338-bf09-8952db4371c0" +"ryanfebrian729@gmail.com","Ryan Feb","3b467fcb-af79-4031-85f8-3073e9343058" +"hajopan12@gmail.com","","3b4c66b3-4ec3-465b-998c-32c9ab7bf2b4" +"imaim3024@gmail.com","AimZ","3b5a0b3a-5930-4cbc-ac78-b1d9d20ac460" +"rafligamercratf@gmail.com","rafly","3b901d8e-7c96-483d-b299-98c8e54f5b57" +"jojohyperbackend@gmail.com","ZeeHyper02","3b9e0c60-5a32-4d1c-b011-46390971b67f" +"ihenry@gmail.com","","3c96f60e-d8ab-4e2d-86f6-6a7f4b40c179" +"dimsartz021@gmail.com","Dimas Tri M","3cdffe97-dad4-47e3-825d-d9c13ae815b5" +"fathurrahman081296@gmail.com","Fathur Rahman","3da30612-1885-423f-a836-3cc7ca33add9" +"hafidnurazis@gmail.com","Hafid Nur","3e20b9ee-f566-4b0f-9e4f-cbb92d31031c" +"helmiputra265@gmail.com","","3f60fb92-3440-4f61-82fe-192c6bcdb301" +"farhansyamsuddin3@gmail.com","","3fc8adf4-a75a-4272-a431-a9b614e8dbd3" +"fauzanabiyan33@gmail.com","Hoshino Abydos ᴾᴿᴼ▄︻デk̷n̷e̷a̷f̷══━一","3ff2ae42-a561-4338-ba61-f444409322c3" +"bagusindrayanaindo@gmail.com","Bagus Indrayana","40194320-d827-4a53-bb8f-36303a6713a2" +"daunn871@gmail.com","Daun","41412e38-3b07-464f-93a4-457ed1cf6176" +"muhammadirfanbaihaqi538@gmail.com","","4155a53f-252e-4b44-a951-851ea5cce606" +"mujahidislami030@gmail.com","Mujahid Islami Primaldi Abdullah","41899d5b-9f1f-4ca9-8be8-9837ea83f493" +"muhammadkevinalvarel@gmail.com","","418f738b-2187-4432-957d-15eb258a65bb" +"galangryandana@gmail.com","","433c45f0-1d8e-442e-95c8-bd9c7b97108e" +"nasruladitri2@gmail.com","Nasrul Aditri","43ea0f85-1b69-4235-ae25-523ad1984d46" +"muhammadariefcp@gmail.com","Muhammad Arief C P","43f5ef95-ac4b-4d5e-bf57-b6bf0c30936d" +"adityamaullana234@gmail.com","Aditya Maulana zidqy ","44045f03-964c-4935-9918-cddc36676278" +"g4mless@proton.me","g4mless","44192093-fadb-4be9-8662-d02e9c47a1b3" +"justgilang99@gmail.com","","46769f5b-f33f-4777-aff1-9c25b9c488e8" +"jezudu@denipl.net","","46a4954b-1b91-4647-a5ba-376bbc299402" +"alfisahri33@gmail.com","alfi sahri","473b0a56-7583-43e6-8511-2e73889e9b37" +"mraihanaf0@gmail.com","Muhammad Raihan Al Farizy","47866d52-c02c-44d9-a89d-76ee1103eed9" +"obenpasaribu@gmail.com","","47e2dd3f-339f-4ce5-aa42-4d89a1fd4aea" +"2206073@itg.ac.id","ZaenalSyamsyulArief","48a70338-aa6b-4f22-b5b1-458da13d85c6" +"ronyronny12@gmail.com","","4b5b6fd7-4f79-412b-967e-0437d3c4c6af" +"malfathiratir@gmail.com","","4bda0567-2a5a-4fda-8d8f-a5998e9d8800" +"lakazamlak02@gmail.com","","4c4abd7a-772d-49fe-977a-57a917adbe6a" +"nazedev@gmail.com","","4cdb4fd8-565e-47c7-9559-215a31f4bd1c" +"revelcahyadi2004@gmail.com","Revel Cahyadi","4d2efba3-a0dd-448e-9a40-a7395a15f863" +"pulungwicaksono2006@gmail.com","Pulung Wicaksono","4d9a29b1-080e-47d0-836b-f33dfbf84c6c" +"ferospedrosa@gmail.com","","501c795f-fd27-4f86-900e-fbbbd02474a7" +"bilgrandov9902003@gmail.com","","503377c4-26af-4890-82f1-a3619953b7b7" +"gbrnmhd89@gmail.com","Gilbran Mahda","509825be-9d84-451e-9833-f2bbd5507ade" +"jevonit252@gmail.com","","512805dd-507c-4193-adad-a1cf5f76a777" +"iwank31052003@gmail.com","Iwan Kurniawan","516deb0d-9ec1-4776-835f-6daba29e7c1b" +"rifanajieagung48@gmail.com","","5182dafb-4a12-4bcc-b967-6ea50aefe7d0" +"anata@yopmail.com","","51832f14-1e08-4543-b1a0-d8107573efbc" +"fajargustiana2@gmail.com","Fajar Gustiana","51896ad3-8184-4e4a-a9c8-4eaa39ac8451" +"raflyazizabdillah30@gmail.com","","51bb6cfe-bd23-4ef9-9992-96b4e1c3a7ad" +"patrickmarcel65@gmail.com","Patrick Marcel","51d0ed9b-5d7c-400e-a75e-b3777dae5be8" +"auranawamadani@gmail.com","Aura N,A","529c4fa4-4894-4c88-ba63-857532f7fef3" +"ayamkucing129@gmail.com","Elang","52b81c76-fa09-4e96-8dfd-f405c5c09808" +"ayyasi52@gmail.com","","543eced6-00b4-4227-82b0-13e626fb1c88" +"itsandka@gmail.com","","548a310d-05a7-4b64-9d5b-032d848446fc" +"ryanda.valents3649@student.unri.ac.id","Ryanda Valents Anakri","54db9209-843c-465c-82c2-d8c4ea72dc7e" +"noaa277@gmail.com","Karakaira","54e0cfb9-55b7-4c00-812f-f04296c11a70" +"larasrahm22@gmail.com","","550fc044-10bd-49a1-9c09-50bd4d5325cc" +"zrbagus5@gmail.com","Bagus","5568477e-e7a0-4a93-b1de-0e775414111a" +"jonfrymarbun@gmail.com","Jonfry Agung Marbun","56f8b4f6-f31e-4faf-87f6-acc8d83bd72d" +"andika@umpo.ac.id","","5768d665-77a3-4ae3-b2ee-37e408c0e98e" +"snarsaggaf@gmail.com","pii","576d1650-71c8-4a5c-81c9-dda3284c13c4" +"azhararizkyrafi@gmail.com","Rizky Rafi Azhara","58871899-6d54-4cd5-bbd0-3d9e2cbe5f9f" +"safuzi333@gmail.com","","58ced2da-dd5c-42da-acd5-0082b5e0e835" +"putrasyaddad@gmail.com","Syaddad Raihan Putra","59d3324c-a264-4f60-91ca-96d9d5def00a" +"bryanfernandoks11@gmail.com","Bryan Fernando Kurniawan Suhartono","5a48dc88-25c8-49e8-8a74-36b493584aa8" +"saehansa@gmail.com","","5a8cf51a-fa8a-44ce-ad1a-898c8487513f" +"kontakpribadiatsushi@gmail.com","","5ab3bd8c-27a2-4552-8f0c-98370dff4e3b" +"mohkaisanalkalbi@gmail.com","","5c15338b-c4a0-4071-ab67-c8f29ffaadaa" +"bayuardana213@gmail.com","","5dc2beb9-46c1-4920-9d07-9708de896778" +"danufebriansyah09@gmail.com","Danu Febriansyah","5e0d9e2e-5ced-4f94-9797-b8083778fe0e" +"pjuanda12@gmail.com","","5e91489c-cacf-4050-b46b-4327255ec74a" +"muzammilulmuttaqin11@gmail.com","","5ee5672c-dba1-42b7-b8f9-e76ba4efd21a" +"raffida2013@gmail.com","Raffi Deas Alvaro","5f46ecdb-f025-4fc6-a981-dd4c4c93a52a" +"markusdamar2958@gmail.com","Damar","5f475128-017f-4021-961c-4d58eef63d99" +"felixcyro008@gmail.com","","5fb48143-4d2c-4d71-bf9a-bd9f44647de6" +"hazelbigbosshazel@gmail.com","","5fecab2f-2382-404e-8f8f-ed031332b886" +"mhd.rijal203@gmail.com","Muhamad Rijal","60fbc970-2079-42c8-8dcb-637c466a7f1c" +"imovic004@gmail.com","movic","61c5d3a0-553f-474d-9950-483cb86057df" +"samuelmarubamanik@gmail.com","","625aa73b-69db-473f-baad-6791ff865e40" +"muhammad.fahri137296@smp.belajar.id","","63a19768-b9c4-480d-95c5-2770393935fd" +"me@anym.dev","","63a87b68-4dc0-41c8-a99a-1335c77dd4e0" +"kithly19@gmail.com","","64428bf7-052f-4b7b-95ca-802f76e93dcc" +"raissatristan14@gmail.com","","645e0a22-a055-4cba-a007-37bd9791f882" +"fairuzfuadi123@gmail.com","","653f2a62-66c5-4eae-a7c5-822a85cd2d9b" +"ahdan.abde@gmail.com","Ahdan Abde Rifai","65d6021e-a03c-4661-a3eb-5452cc89b588" +"ivanrahmat.p77@gmail.com","Ivan Rahmat Prakasa","65d79307-2b78-48af-a9d8-750e66126401" +"hamzahbaik9@gmail.com","","65efcb5a-13e3-4552-9336-f7b68705e521" +"andrianxyz82@gmail.com","","6677b5ae-3171-428d-aa61-22464b1ba80f" +"billysyahputra630@gmail.com","Billy","66dbdf3d-3cf0-4d81-810e-185e61b952b7" +"yusri.irfani@gmail.com","","6773b841-2037-4aee-ace1-a8bea7341e25" +"reiyhan.aditya@gmail.com","Rey Panda","68876807-64ed-49f9-91d4-d7f68eb0e6c9" +"hexorzplay@gmail.com","","689872ad-856d-40f6-9d87-86d580394fb4" +"codewithwan@gmail.com","","699646d9-192a-451f-99d1-46d4a42e4eec" +"mtaufiksaadi28@gmail.com","","6a9264f2-2731-4e4a-8e29-9fc1a505e6dc" +"alamsantoso.12@gmail.com","Emowmow","6ab9934d-8f77-4e32-b4db-d09222fa4e44" +"kunengrestu@gmail.com","","6ae98213-5e3a-41c7-b356-03ae6760993d" +"andikacahargen2@gmail.com","Anka Tama","6b62be2c-912d-4809-af64-08ff52aef4b8" +"rmz4mc7wg6@privaterelay.appleid.com","","6bab0fab-6c05-4ed5-9d4d-bbabaf62b513" +"handikacoco@gmail.com","","6bd01f53-7884-40a2-aeb4-34b000120088" +"riziqliliulilalbab@gmail.com","RIZIQ LILI ULIL ALBAB","6d10db2d-3ac2-4008-90dd-141311219c53" +"syisahi4696@gmail.com","","6dd8c78b-9884-4944-b2d4-de2bb8711da6" +"akhmadwibu05@gmail.com","akhmadkhoirudin","6e32e4d3-25e7-47d5-97b5-60955969e22f" +"andika.namikaze02@gmail.com","Andika Fitra Darmawan","6eae5e60-544e-4bf2-81af-7b1138ae967a" +"luhalisarafansyah@gmail.com","","6eb155d0-aea1-41ca-bcdf-7effa9912366" +"novianybl@gmail.com","Novian Project","6ebfa0ad-fde4-42f9-9d0f-8e51e465d534" +"boostlivious@gmail.com","Raynaldi Siahaan","6f089bd4-8829-4a62-8c06-104319116e93" +"rasyadbimasatya04@gmail.com","Rasyad Bimasatya","6f237adc-f724-424c-baf1-4d13f03887e1" +"rezyaindisaputra@gmail.com","","6f43758c-224e-4d9d-9273-f3a3df51a11c" +"rahardisalim23@gmail.com","","6f8a13c1-3836-4715-9181-dc21314cd8af" +"alfin.rozzaq.270206@gmail.com","Alfin Rozzaq Nirwana","6f974b20-6309-4b44-9c7c-165d4cb458c9" +"muhammad.toffazal00@gmail.com","","7055961a-7b40-49d9-ace2-6ce7ad48f14d" +"raaflynr@gmail.com","","706b67c2-e410-4143-a7fa-213d35178db4" +"kujouarisu@gmail.com","","7216ca14-7cff-4d0b-b8c9-70427af21b4a" +"rohimsaga7@gmail.com","","722989b5-f685-4fc3-9bc7-76f04c479d49" +"rayhanlubis01@gmail.com","Rayhan Lubis","72bf1d04-8b95-4f90-a88f-f78c0571d841" +"raflyirham1005@gmail.com","Rafly Irham Safatulloh","73404aea-a007-4629-b9dc-fb26cb307e57" +"sopiadi2006@gmail.com","","7364d4fa-f6f7-429f-a95d-f6775eca6d9f" +"haydar130305@gmail.com","","7462e4b2-b446-4562-9bc8-e08c07d157ef" +"arilindra21@gmail.com","Moch. Aril Indra Permana","748de15d-374a-4756-89e2-75754e90542f" +"gundowijoyo7@gmail.com","bahaywuj","74bd7b16-a75a-4ffd-908d-0b00f6ced98b" +"yayohajid@gmail.com","","74f39d03-eb00-4a6c-81fe-f2d3d2f60cf3" +"codesphere01010@gmail.com","Dzarel Developer ","757980ed-43fe-4092-9d2b-387e86c5b596" +"stefanuslay01@gmail.com","Stefanus Lay","763244a7-0bc5-4668-811f-4e20ae8825bb" +"fawfawfaw994@gmail.com","","76c148f1-fef9-4489-8421-1cb875d7747f" +"resa.rahman@gmail.com","","76da63db-4937-44f4-bd7b-2673db6b7c40" +"bryann.carls@gmail.com","","76e6cd37-478a-45f7-ac57-81ff1b646761" +"m.saidibjm4@gmail.com","Muhammad Saidi","786820eb-eccf-4c57-b05a-9cc4249672c4" +"securtydit@gmail.com","","78d09810-d778-46e4-a69a-c055ebc29998" +"helmygarcia67@gmail.com","Helmy ","793b5a30-f0c7-4dfe-afc8-0e85e7ccd49c" +"akbarriansyah339@gmail.com","Akbar Riansyah","793ce294-f69a-4aba-8259-f20ee2b4c73f" +"revanza.firdaus@gmail.com","Muhammad Revanza Firdaus","79c01c0b-4bff-43af-9ec9-d1fa29f3987b" +"rezokushop@gmail.com","","7a27e0da-9593-40a7-8462-9daf6e96e3ae" +"aril.permana@paper.id","","7a960082-4df8-45fd-99fa-a204d6688caa" +"atmasusanto38.imphenhack@gmail.com","","7b247e32-ed65-4865-a1ce-0e9cc4cb8297" +"ihsanwar77@gmail.com","","7b4b6a6d-1cef-415a-aca3-f98648f0f340" +"fsparatos@gmail.com","","7c30facc-eb6f-412e-88c4-0095f9bfdd1b" +"shalahuddin.4332311020@students.polibatam.ac.id","Shalahuddin Al-Ayyubi","7ca6c4b1-be0e-4993-83d8-0eff8945ea50" +"arissetia.m@gmail.com","Aris Setiawan","7cbcf002-8e92-4b28-bcee-1776ddf5ec86" +"andikadwipwf@gmail.com","","7d5ac7ef-704e-4275-b1b6-59b497548365" +"msayyid.rafeed@gmail.com","Muhammad Sayyid Rafee' Djamil","7da76028-0ed7-434e-b51e-d163cb3d3585" +"muhammadriskiakbar2009@gmail.com","","7ecd33ed-40b6-4236-981f-5319fdd390d3" +"bobypratama.dev@gmail.com","Muhammad Boby Pratama","7f0592c4-b0a6-476d-a436-75a8fe753f32" +"akbarrozaq691@gmail.com","","7f1689fe-9d54-4cec-a1f0-db5ffae98d3b" +"220605110044@student.uin-malang.ac.id","Ridho Aulia Rahman","801d6313-6a1c-45d3-9a64-1db88269e250" +"muhammadrestu1108@gmail.com","Muhammad Restu","805d5fc1-6f9d-4e37-b1bc-514ed4e17bea" +"iyandabes1@gmail.com","Astha","80e0229e-e268-4d22-a0c5-4610bd2b4bdd" +"ridhofahmij225@gmail.com","Ridha Fahmi J","80f24b96-36a6-44eb-a361-26bd04554609" +"wisnuajipamungkas354@gmail.com","","80f40577-19f8-45cb-86d1-dcc60472b9e8" +"mgsmfr@gmail.com","","8177c99d-28f5-4a88-8415-9abea3fb934b" +"eguinjonathan08@gmail.com","Guinn","8268ab9d-acc1-4379-b9e9-331392668db2" +"fardanyudhistira16@gmail.com","Fardan Yudhistira ","83635084-c207-40ee-ac11-742b213fe843" +"quyun532@gmail.com","","83c6b62f-5c95-4e74-b16f-a9f48a9346cc" +"zakamaragames@gmail.com","Muhammad Ilyasa","83cc1c2b-01ba-438c-8c62-7c11a75c531c" +"krisnaguntur71@gmail.com","","840aa041-314a-44cc-8b52-e529b7aab3c3" +"mhmdazkanfl@gmail.com","Muhammad Azka Naufal","8454c75e-b0e4-4c04-a580-c13cddd63f3c" +"fajarrahman216@gmail.com","Computer","848435a2-d024-497a-b020-f320155ef675" +"aswinarung2@gmail.com","AswinA","84fe21f4-c03c-4042-b535-d61d92d33288" +"davidk3476@gmail.com","","85887410-b9e3-4861-8ebb-e35474bfd003" +"glenrioariesto@gmail.com","GlennJackson","865d44a1-be9b-4dbc-8110-02e91a0ad557" +"ferta996@gmail.com","Ferta Junindi","86be6a41-8d6d-4f91-b5d7-782d9a2de14e" +"julianisa.ar@gmail.com","Fatah","8709fc42-9f88-496c-8610-6cae5253cce9" +"indraaziz15@gmail.com","","8786bfb3-7f3e-40ed-9f46-f3ab5b1a938a" +"hshino@student.telkomuniversity.ac.id","Muhammad Hashfi Hadyan","87ce6b8d-af52-449b-a11a-854042633edf" +"farhansyahbanna07@gmail.com","Farhan ","8a1671be-64ea-48ec-9b24-f2589fc33281" +"nawvalovsky@gmail.com","","8b023aff-3d10-44dd-ad30-2251604bd319" +"mininsna@gmail.com","Minin","8bcee28c-19fa-45b8-bc0a-35e97af0110c" +"rzkalih330@gmail.com","","8bf4de04-3335-43cd-9f09-9a0bcddd3e65" +"agusse9986@gmail.com","Agus Setiawan","8c49cb67-5a7b-4bff-bd78-141166b1ce39" +"ixanramdhani@gmail.com","","8ca8015e-07c1-4d57-86f0-3223165b10af" +"bagas101021@gmail.com","Bagas Pamungkas","8d3cdd6e-cf34-4462-a2b3-91874bda4839" +"maulidanfaka391@gmail.com","Faksz","8e4ccb11-d491-4aaf-bf78-15fa333ea71d" +"mugteadotco@gmail.com","MugTea","8e907eae-5137-4499-a13b-11fd89106ae4" +"denandragagono@gmail.com","","90b98bc8-3d98-428f-8549-07457cf4bda0" +"trian.radis448@gmail.com","Trian Radis Pengestu","91064af2-a72c-4c48-9cd5-acdc2b6527f9" +"mnazriel177@gmail.com","","9130249c-c366-4c47-9d4e-337c35abce6a" +"onesta928@gmail.com","","91582716-23d1-42f9-afc8-6eb857bcc289" +"dimasmaulana.idn@gmail.com","Dimas Maulana","917aa59a-bf05-47af-a26b-f78f9faeaac0" +"naufalhaidar946@gmail.com","","91c5e840-3758-4c7f-9dcc-b621b6ba4d10" +"sandysyarifhartanto@gmail.com","Sandy Syarif","92e971bf-863c-4d66-a522-81a1a864c56c" +"77leviann@gmail.com","","93cc57f9-48c5-4b71-83bd-63bac1f5717a" +"roxyuciha@gmail.com","Robbanie","93d67e12-dbf6-4df7-882f-38ff471c9cf5" +"thisiswahibza@gmail.com","","93ffb004-f16d-4dd8-bd4e-55384c056138" +"raazan.muhammad.ikhsan@gmail.com","Razan Muhammad Ikhsan","953d0ce6-49ee-4606-9616-23b204e61710" +"farilpratamap@gmail.com","","955d4a9e-7e58-4210-86af-d38f8794a565" +"candraggml@gmail.com","","9665ef56-2b46-4883-bd1d-29d20c5a6f98" +"aulianaufaln@gmail.com","","9815d40b-d962-4a75-8383-8993407f89a7" +"rubenrextonb@gmail.com","","98236b68-a066-4538-9ae5-d5b063961244" +"bettyindrawati4@gmail.com","Betty Indrawati","98352ac8-241d-4433-b61b-60d9904b7999" +"alfandy115@gmail.com","Alfandy Afriandani","98a8d32e-1408-4f29-a374-fba3470bbe7c" +"zahranvidian@gmail.com","","9939f383-0ee4-4b8e-be03-08977324edd0" +"alifr5353@gmail.com","Alif Ramadhan ","9a5f346e-dcfe-47d2-9e43-80dd353d46e3" +"gn.mailwork@gmail.com","Grafis Nuresa","9acbdac5-f7aa-4834-90c4-4d19d67410f4" +"zexceed12300@gmail.com","Ihsan Nul Amri","9b067871-2da9-48e7-b15f-1e604d422d33" +"haikalrafifas@gmail.com","Haikal Rafif","9b212b4f-a019-48cd-9e6a-0f9d3c0ada4d" +"novealdioardhan@gmail.com","ardhan novealdio","9b9b68e3-f8fa-47a2-a47b-13af2d5cb22f" +"nabilpasha230606@gmail.com","Nabil Pasha","9c63cf90-68af-4566-aa74-562a9a10d73a" +"nash.collage.life@gmail.com","Muhammad Nashrulloh","9c963bbf-6eb0-46c8-86ce-ebf1d0d09b38" +"hhhh25737@gmail.com","Muhammad Ridwan","9cb022e2-1f94-414d-b9cb-c1781d676a72" +"samuelsiallagan49@gmail.com","","9cf09ee4-6ce0-4afe-a36e-9f472035cb34" +"sirrauf412@gmail.com","Sir Ananda Rauf","9d4ccd3e-c2c1-4ef9-9fda-007403908ecc" +"bentambunan20@gmail.com","","9d539268-8beb-4e57-80fd-6d2293776528" +"falihafiq1928@gmail.com","Muhammad Falih Afiq","9d8a38c3-e631-4b31-8f86-e3f6408f7330" +"muhammadalfathir@smkwikrama.sch.id","","9e26cc6f-048d-41a1-b657-4f06f5198aaa" +"hazizhaziz549@gmail.com","","9e63c2d8-d2c2-4ac7-9c2e-226965c4f402" +"hekate071@gmail.com","","9eb70e94-b963-4f4c-9852-7f6e95e7987f" +"mramdani1230@gmail.com","MRamdani","9f472bbd-aedb-49be-b8bf-0473d55f2622" +"dewarahmat1233@gmail.com","Matt","9fece7da-1c1d-4e07-843c-9cd26aee60b5" +"derriverse@gmail.com","","a0148ac9-002a-420e-bc23-ac7b3ee9a33c" +"jalagohu@denipl.net","","a050ea6f-8d2c-4b4b-9f64-306517b63613" +"muhammadrobisasaki@gmail.com","sasakirooo","a2770339-e7e6-4b20-9cfe-99c8d2471930" +"triwibowoilham2@gmail.com","Muhammad Ilham Triwibowo","a2c1d665-f360-4cd8-a313-5fee29b91d6e" +"yuratamma@gmail.com","Zidna Fadla","a2e938b8-7403-4e25-bc34-63b9838983a6" +"sudo.rusydi@gmail.com","","a32c0e81-1fbd-4bec-8e91-4cd6d10f553b" +"nazihelfikar68@gmail.com","","a42e221f-c198-463f-ac11-84060fd9b494" +"adzthariq@gmail.com","Muhammd Thariq Adzikra","a4c434da-2491-40b2-aa57-7b4aa53a69c1" +"saintparid@gmail.com","Saint Jameson Parid","a53db442-4a6b-4431-afe1-b9d148b977fb" +"asja77502@gmail.com","lioXploitcs ","a57807e3-bafb-4c4c-b23e-ba57c43c2cc2" +"realdrenzzz@gmail.com","Drenzzz.","a5ea628a-24d9-4754-b461-3eda53da53bf" +"maldenai76@gmail.com","","a5ee4302-50ff-4463-8f47-9cf60b414960" +"yogaagustiansyah01@gmail.com","Yoga Agustiansyah","a60c10f3-d73a-4953-8d2c-1e413c881470" +"masuwha@gmail.com","","a6acc3eb-6b59-4d31-881a-c4a1aecf8cfc" +"jazaniezt07@gmail.com","M. Abdillah Aljazani","a81baf2a-b875-4c86-84ab-618f403abc60" +"rickogurning333@gmail.com","","a8e87809-36a3-467e-8a49-8a730bb70724" +"zakyfarhan1326@gmail.com","Zaky Muhammad Fauzi","a90a9400-0576-4708-8912-c630807b9391" +"sandysyarifhhartanto@gmail.com","","a91c8500-69fd-4602-9795-779d006a305e" +"andra.pratama@riswan.com","","a927c690-8ebf-44eb-bf97-1d780729a2c4" +"naufalyuprata@gmail.com","","a93fd9dd-3e36-4ba1-b668-988dc2d186c6" +"mubarrokwildan1@gmail.com","Akazano_abe","a9807283-d4de-4990-8985-b22ded98e4cd" +"fackyouu128@gmail.com","Reza A Maulana ","a997e674-f927-474b-b817-9543f722aa9b" +"riantrito@gmail.com","","a9dfd864-faa1-452a-b074-8498e6e08af5" +"alhikam200@gmail.com","ΑlhikamΔirga⌘","a9f7ded3-ed87-486b-bd11-0d4b3cb5d9a7" +"afiffahriafrizall@gmail.com","","aa088d9f-7251-4673-ad6b-88261666710b" +"miawspecialist@gmail.com","iyep","aa42b892-74dc-4a00-85b5-c7f78127c4e9" +"muhammaddean27@gmail.com","Muhammad Dean Fahreza","aa4ba09e-4ed0-449c-ba98-5441844f022b" +"harissabil04@gmail.com","Muhammad Haris Sabil Al Karim","aa9d683d-0787-4279-8085-541459b1d8fa" +"quyunisnawan34@gmail.com","","ab36232b-b46c-4d30-8bb3-9b11e3e9ac7b" +"mnabilfs22@gmail.com","Muhammad Nabil Farras Sulthan","ab89f5c9-95fe-4808-81be-9bdc9c3b21ec" +"mochamadrifkyrifaldy@gmail.com","rifkyrifaldy","aba1da85-d87b-4d52-bea9-35639c4f1d64" +"muhammadyustanzah@gmail.com","","ada3b4d9-745b-41c2-95b5-1a8275e29882" +"sulfikaralijun@gmail.com","Sulfikar Alijun","adbd7ccc-252f-40c4-b5db-8940392da7e2" +"mitsuhaadly@gmail.com","Adeley","aef3f5b3-23b0-44e7-aa73-edab6ab20c6e" +"mobilezero24@gmail.com","Muhammad keisya fadilah","af8d0e16-0358-4d96-b822-a4023b06752d" +"arvardy@student.ub.ac.id","","b022268c-2ac3-43a7-a5cf-c0bae568477a" +"zulfikarm022@gmail.com","","b04d2b39-25c2-4e65-a28f-8b35edeb6137" +"hasrinata@gmail.com","Hasrinata Arya Afendi","b1171213-ed39-4333-b58f-2424d3d2b9fe" +"wahyuikbal777@gmail.com","wahyu ikbal maulana","b1e1ba24-35fe-4dd7-b37f-77d42314b3d9" +"rafiadly259@gmail.com","","b21cde91-57f4-4f4e-b082-9130dcaff5a6" +"rakhaakbar522@gmail.com","Muhammad Rakha Akbar","b2208e46-26b9-497c-9105-7bfff4fd89f3" +"diwapraset02@gmail.com","Diwa","b22a09b9-7079-49c9-9734-0f69f73cdd67" +"anakriryanda@gmail.com","","b26a5fba-f01d-49eb-a0ab-b0fa67d846a8" +"sxntient.labs@gmail.com","","b2fb784d-cf93-4d45-a8bf-0fbbefdb8761" +"vlakasofficial@gmail.com","Fauzan","b35057c8-d5c3-4e20-b027-025f3d959398" +"sandifadel739@gmail.com","","b43dfb80-8037-4478-a050-e28b0b0e243c" +"alfawwaz.naufal13@gmail.com","Naufal Al F","b44432b9-c6ce-472c-b53b-fe6f838cc283" +"ilhampradani8@gmail.com","","b49fddfb-0be3-4d4f-a6d3-927c14ac9b81" +"divoveenda@gmail.com","Veenda Putri Divo","b4c53c87-6310-4143-bccf-94ee0440c17d" +"fazaradityarma@gmail.com","Faza","b50caf6d-e433-43d8-bef2-1ff073b13027" +"muhyusufsyamsyam@gmail.com","Yusuf Syam","b5113861-be40-4651-8ab2-33a8051656a7" +"koding12sam@gmail.com","Muel","b569b9c4-b173-45a4-b022-5bd0607e84be" +"zenaufa@hotmail.com","","b5a1b1e9-3bb5-4076-88a1-d36ce4dde6fc" +"naufalfadhilah689@gmail.com","Muhammad Naufal Fadhilah","b6a3051f-1890-440e-9956-c380e2b5c139" +"putrosrv@gmail.com","","b6ad4101-23d4-427c-9376-964cf995fc18" +"fajarskyy833@gmail.com","","b732bc7c-b3c7-4a79-8529-4622445343f3" +"fuwafuwa@tiffincrane.com","","b76b604d-9621-4aaf-bdf1-bc2da2f8248f" +"aminaprzaa@gmail.com","","b7e71f93-6fce-4ef0-8eae-1a15634bcb9e" +"abdurrahman.hafizh02@gmail.com","","b7f0d89b-6bdf-40dd-b5ca-442130b12c00" +"apriliyantoecha1@gmail.com","Echa Apriliyanto","b8350a6f-621e-4c2f-9d2b-cf79c2a2f091" +"rizkysrg62@gmail.com","","b864e321-9c43-422a-b980-c91809d3039a" +"kuncibatara@gmail.com","","b9066990-a721-40f9-8478-5f806c80c751" +"lotteaquamarine@comfythings.com","","b96bc4aa-4a97-40cc-be49-2560df93751a" +"zlutfhi89@gmail.com","","b9bb3ff3-5539-4b48-8101-90517a06cc42" +"theownerkill432@gmail.com","","b9ef4db0-6b7b-4dba-aef7-9434ce104e07" +"aryandasanggadiennata26@gmail.com","R3X","bb1696b1-7f82-46fa-805b-6ec79e673e40" +"rickyricko302@gmail.com","Ricky Verdiyanto","bbbf243b-f08e-4911-b4bd-838200c50cb5" +"nalindasepti@gmail.com","","bbc5e3e7-cd72-4739-81c6-199876b02084" +"gamerzcraft37@gmail.com","Gazach","bbfac7a8-2a13-48a2-9f29-499f33d68b8c" +"rewyzzi@gmail.com","","bc02bb7b-8193-4ddc-b8ca-d858b212de2e" +"alfanhuda2004@gmail.com","Alfanhuda","bc2bec53-ee17-40f7-9640-9556745a171a" +"tengkusripratiwi1608@gmail.com","","bd35df8a-9a78-4b14-aa8b-8366e9de58bd" +"bataraa@proton.me","Batara Krisna Danduru","bdb30d1b-9754-4333-b7e0-bce7e7f9ebda" +"hayyannashrulloh25@gmail.com","","be5f3f84-3435-4800-b019-3b6564113004" +"050393537@ecampus.ut.ac.id","Fahrur Rozi","be83a7e1-abf4-43ca-a23c-d335449b844f" +"arivopwenz@gmail.com","Ari Prabowo","be9d3160-e00e-4547-bbdd-c6546fe0af71" +"faaldy16@gmail.com","Aldi Fauzi Ilmamuslim","beb5d548-c976-4110-87f2-75d4f8465e2b" +"arbasfardan@gmail.com","Fardan Arbaz","bef2164a-6f12-4d69-847e-5d6ac19f554f" +"bwfzbw@gmail.com","jarss (zharfan)","bef8c2ba-c959-4896-a0d3-463e2f77570b" +"nabielilyasa133@gmail.com","","bf0d6b84-0508-4917-8ff5-e23e1d3ce23b" +"xecloud4@gmail.com","A. Abqory","bfacc996-8020-41fe-b323-c5c3dac7f425" +"christiannathanielp@gmail.com","Christian Nathaniel","c00a24fd-44b7-477a-9048-05007fdfd76e" +"ardyrkm23@gmail.com","","c048d109-8d91-49f2-b04f-fc86866c1487" +"risfarishk@gmail.com","","c084728e-f1c0-4775-b0b5-10ab0441bab6" +"awannshafwan@gmail.com","Awan","c0f6b85a-4723-484d-8fdf-713f7e5aa9f7" +"willygurning14@gmail.com","","c19ad425-8df8-4b37-8f35-797767f48672" +"0110224081@student.nurulfikri.ac.id","Raffa Yuda Pratama","c288a2df-a1e6-4beb-a6ea-aab0b7f912df" +"240605110160@student.uin-malang.ac.id","","c478b5f7-fc09-4b97-8354-e8889f852450" +"muhammadsultansyah14@gmail.com","Muhammad Sultansyah","c4aa882a-bfc2-4a1c-a9e7-89f9a37b9fba" +"grecyllagrecy@gmail.com","","c5611544-3041-4a31-866a-84ad0b781aca" +"ilhamthaariq@gmail.com","Muhammad Ilham Rijal Thaariq","c5ecbd2b-8d7b-4440-a75e-2bb58b1ed8cb" +"basukiridhoalghifary@gmail.com","basukiridho","c6323853-13e3-49dc-972c-a7cb789f0b32" +"kacunghabibiganteng@gmail.com","KacungHabibi™","c6dab1e3-8177-4784-936b-364a9e58a076" +"nhardiansa@gmail.com","Nabil Hardiansa","c79d4b2b-e63f-4187-a8cd-520fde333ab3" +"bhosya27@gmail.com","Bowoksae","c8f35350-384f-4933-be59-d785dbe06abc" +"m.sadiqin46@gmail.com","MuhammadSadiqin","c92b26ed-ddc1-45e7-9a17-f2d2ea7b9d2f" +"gayuyunma1123@gmail.com","","c978891b-71d3-423a-8c97-5648304f5a47" +"akbarriffani19@gmail.com","LebahRajin","c9b2c04a-5027-4ccb-bd0b-2c26c7e9f619" +"ajangrahmat@gmail.com","Ajang Rahmat","ca299304-dfa7-49ba-aa1d-0ed259ffe0fc" +"auliyanihlah@gmail.com","","caa569eb-822e-418c-93aa-df23563a178c" +"razandirgham@gmail.com","","caaaf8b5-ac4b-40b5-9549-f0f8ec9d6cd1" +"profadlibae@gmail.com","Acmad Fadli Aditama","cabaade4-b256-4798-844a-78f36cb16b0b" +"atnandimas@gmail.com","Adnan Rohmat K","cb2161a5-7c09-4360-908b-f2e629be1cda" +"sitizahraazizah23@gmail.com","Siti Zahra Azizah","cc7e4a74-7c3d-44cd-af91-a1b9326cb13e" +"nurdin99.ek@gmail.com","Nurdin","cd64c94d-ca81-4169-bb4d-e2af2dba4a55" +"fauzanhabib56@gmail.com","","cd7ebe7e-a914-457f-be95-2e6256342552" +"reyhananf7@gmail.com","","cdab11c6-ef41-4e2c-ad9d-f9636681e9f0" +"loidthegost@gmail.com","","ce458e26-313e-47cd-937d-e5e95f77a136" +"omnidevv@gmail.com","","cf1eadaa-a313-4760-808e-37dc70446ccf" +"m.ilhamjaya1808@gmail.com","Muhammad Ilham Jaya ","cfc296db-5cd7-4485-b8d0-ba330f5c148c" +"risbulgt@gmail.com","","d00b9542-2bc4-4a1c-acca-e2e58f7363e5" +"lembahku@gmail.com","","d15d8329-a248-4339-8090-69c40ca2a050" +"fcrizkywijaya@gmail.com","Farid Rizky Wijaya","d1c950e6-fb9e-4d53-9c2c-e77477a9a1eb" +"bimaadam.dev@gmail.com","","d263ee7e-e4fb-4b55-a5d9-0207520e0fa8" +"felixarajiph@gmail.com","Rajiph iqbal","d350da40-7543-4073-b6a5-95c79d705dd3" +"ahmadfawwaz103@gmail.com","","d396661f-c733-4991-a212-76b9e4ecb02c" +"hafizpramudya17@gmail.com","Nflz","d44ab980-6982-46b3-8da5-fafef0dedd9f" +"johnobama24keren@gmail.com","Hiuaaaaa","d4953c02-1a07-476c-b5ca-7dfd1e91d28c" +"aliakbar06110@gmail.com","","d4d2c768-3296-40fa-8c87-3bf0b9a54fac" +"sanjaya28051@gmail.com","","d5ff8a92-2b82-42b9-a143-2cd8c376c1ef" +"nawvalovsky@proton.me","","d731aa31-8893-4496-ad36-db71729e3419" +"agung.astanto14@gmail.com","","d744ffbb-7011-43b6-a4f8-7ef2f105ba12" +"yumpp24@gmail.com","","d7587b8e-51fb-404b-ae31-7f5a86c85119" +"novandiramadhan80@gmail.com","","d8f27598-3fed-47da-be14-86c59f70387a" +"sfatimaple@gmail.com","Sfatimah Azzahra","d937a04d-da2e-46e0-9e38-b36d244f8daa" +"andriscreen@gmail.com","Andri Irawan","d938e47a-5a8d-41c2-9952-c42c7d83f291" +"suryami62@outlook.com","Surya Ramadhan","d9a4b3e0-eed5-4c63-984f-096a8fb0a03d" +"abdalhaqqm@gmail.com","Abdalhaqq Muhammad Saih","d9b2f557-027c-4c2e-85e0-f157f2df4917" +"alijun.dev@gmail.com","Sulfikar Alijun","da349dec-eee1-4ed4-bd97-d8322f1ab36e" +"warsenosetyono@gmail.com","Warseno","daaf8fd0-2660-4462-990b-9eab46df6f47" +"kemasmuhammadalqodri@gmail.com","","db3ca0d6-67c6-48c0-9da1-e4b45ca3f921" +"fadlankurahan2@gmail.com","","dd022635-06ed-4ce2-85c1-7026c954e5c7" +"iqbalharimurti1@gmail.com","krenz","dd38bb9b-c45d-4ce2-b4b3-f99b8c8d7e82" +"obarya24@gmail.com","Afdaan","dde9ea50-6a95-4a73-a7cf-0c1e9e457c56" +"jexawe1022@okcdeals.com","","de072603-83a0-4d19-b601-d7bd25534d3d" +"mdjauharil29@gmail.com","Areal","de4190a8-2a66-4e96-aaf6-c3fb0ca838a7" +"diasdigital03@gmail.com","Dias","dea38d11-ef5f-492c-b107-17b509326138" +"apirahman55@gmail.com","Api Dev","df939ac3-de24-473c-8006-cf512fec4e10" +"rvlionxz@gmail.com","Reval Maulidan","dfad62ce-3285-4d1d-8ad6-8cb3a618a3e8" +"tsqf.hx@gmail.com","","e09e8094-49ae-4cb0-9e25-8cb548f6b37e" +"bloomsky133@gmail.com","","e18f82ff-7809-4274-b81c-b3dae3bac731" +"asepharyanalm001@gmail.com","Asep Haryana Saputra","e198581d-62bc-4098-8dc8-94302face1d9" +"kussokurae990@gmail.com","","e1dc4e80-c85e-440f-977e-32ac86ac4a8e" +"kaoricicak000@gmail.com","","e210703d-e0f2-493a-b976-ad02b714fd4d" +"felixvalentino58@gmail.com","","e21dbd95-0379-4087-84d4-735a7e280990" +"ferdialf.dev@gmail.com","FerdiAlfian_","e2248b8b-b6cb-4a9c-9746-eba0bc8d03ce" +"rafiqgans32@gmail.com","Ainur Rafiq","e26b3480-1f75-4038-9c73-c5db5c478e08" +"thed0704@gmail.com","","e27f8e2b-2ba4-41c8-8ef1-1a1c8299ec38" +"voidstayprivate@proton.me","Corteza Familia","e4747f46-e751-4e42-8190-5c8be219d50e" +"hoshikochan93@gmail.com","Rechan Dinata","e5770488-35c2-4298-a97e-b79f863c0c2a" +"ytbchanelsukiran@gmail.com","","e582bdf9-209e-4aa0-b052-043a664a5a27" +"putraaldhyansyah@gmail.com","","e59ed718-2a1b-4f86-a4e1-6063384a5fc1" +"gilarwaluyo@gmail.com","Abimanyu Gilar","e5d0bd59-1f07-49b7-8242-4ddb620e2a8b" +"noisyboyss887@gmail.com","Kangmas Darr","e65bf229-f745-41b4-a54e-875a765aa745" +"farelfebryan06@gmail.com","","e68e50fd-fc75-42a0-8b84-70bfaf508d01" +"wisdom.wahyuaji@gmail.com","Wisdom Wahyu Aji","e6a9a555-7af1-4abb-8ad7-1162e3be258a" +"b19marcel@gmail.com","","e6c844ce-a58a-414e-b0e3-8daf404a79f5" +"devakhri.farhan@gmail.com","Devakhri Farhan ","e725132c-af86-4da9-a220-57288a436ab2" +"haikaljitra35@gmail.com","","e7bec056-7f63-4642-a763-afa39c3c340e" +"evanluis198@gmail.com","Evan Luis Tanjung","e8d69460-4eb9-48c7-a921-4738ad7c8dc9" +"ikhwannurrizkif@gmail.com","","e913c217-2dde-4498-909c-4b2d5afd89d1" +"ryandraa27@gmail.com","","e98fbabe-4120-4d16-b11f-e447467c8ef9" +"mtaufikska@gmail.com","","e99519f0-630b-4293-8487-a17d667fa708" +"tudebaliirl@gmail.com","TudeStillLearning!","e99abe65-5ce7-49c5-930b-b7e456d55661" +"adam.daniamm@gmail.com","","e9b65cdd-9c7c-471d-97ac-b02f0434e87f" +"boboi0704@gmail.com","","e9bc3d6c-67af-4687-8b3b-a122a93710ef" +"nathantanusubroto15@gmail.com","","e9ef0f76-533a-4016-ab14-420934da3fe3" +"mikmself@gmail.com","Muhamad Irga Khoirul Mahfis","eab56176-5f01-4ff2-8dca-51bebf7771fc" +"yuenvengozatheowonata@gmail.com","Yuenvengoza Theowonata","eac6a2e3-017f-4c92-ae73-38bc43520640" +"dexangga06@gmail.com","","eb0176ef-9cd5-474d-9bc2-115afb6eb831" +"reeimu28@gmail.com","Moruten","eb2c7101-f5d4-453c-80e8-1f3f77d350dc" +"henryfaaa@gmail.com","","eb350f16-56c0-4e05-a483-7300ab363c6b" +"kelvinlihandy2005@gmail.com","Kelvin Lihandy","ec3d9492-cc18-497e-b63a-a1c06281bcaa" +"alyssashane2607@gmail.com","","ece0ce22-4193-46f0-af02-d0153e896ee4" +"yandrajafarsidiq8@gmail.com","Yandra Jafar Sidiq","ee2aff01-ddc0-40fd-afda-db8e0c0e9556" +"rikogans754@gmail.com","","eef4fdd0-0198-4749-b099-0d558ab2ce22" +"arkandi.2020@gmail.com","Muhammad Arkandi Syahputra Santosa","ef13c12f-2cca-4ddf-9dad-3d387a89bbf8" +"alfaris.mgk@gmail.com","","f01ba8b4-7ee2-4561-bc22-73bbfb712ea0" +"bilorpanas@gmail.com","","f05211c3-aa26-473b-a6a4-225424349e81" +"limakaki881@gmail.com","yth.mas.kanjeng.gus.mas.lui.s.pd.kom.h.i.alm.h.lc.hc.pc.amd.intel.ndx.aka.","f0cace35-b865-4475-9ddb-5fce24f655f2" +"arvanardana1@gmail.com","Arvan Ardana","f1df8edd-2549-4c98-be46-01584aa134eb" +"farreldiego29@gmail.com","Farrel Diego","f26c75f5-6ae7-446b-aa47-695ba13e7c7f" +"wizzkingchannel@gmail.com","HabiebAnugrah","f34efb80-ad1d-434f-a319-e1d54973ff12" +"adityakurniasaputra903@gmail.com","Kurnias","f377d789-ecf1-4a12-b72b-a8ffe30cc123" +"dav1nalifianda@gmail.com","Davin Alifianda Adytia","f3a25278-ec1d-496a-a89c-030c5c521111" +"rifqinanda60@gmail.com","","f3fef42a-9d51-40d6-b6e7-59f25bf068c8" +"notmadz132@gmail.com","Mu'adz Abdulloh","f40b14d5-0cc4-4605-9893-8f27dd34de71" +"qodria589@gmail.com","","f44ce041-e64c-4cbd-a104-83964aa37ccb" +"fahrezaxgamer@gmail.com","Fahreza Pratama Hidayat","f47cacb7-e099-4816-96c9-77f858414235" +"dyas@live.com","Drestanto Muhammad Dyasputro","f57ac77c-7ea9-4b92-aeb5-a7131a5052dc" +"ahmadgozali4040@gmail.com","Ahmad Ghozali","f6938963-132b-4471-90c1-2a252923b89f" +"jony.huang.me@gmail.com","Jony Wijaya","f786208b-28cc-4484-935f-b88f2f75d6d0" +"afrizaahmad18@gmail.com","normies","f7b6ebf3-3bce-46df-b18f-22763e552e6e" +"satyabr147@gmail.com","","f833772b-a037-48ae-90eb-c3b02a06a3b9" +"gmrikza05@gmail.com","","f83bbabf-f6e8-4023-9626-2a97a0c4c994" +"andikadibya92@gmail.com","Andika Dibya Azzumardi","f8cc3af4-3a3a-4a3d-8314-972725366ffb" +"rizkynursanto48@gmail.com","Rizky Adi N.","fa57208f-b1a7-4766-9067-d4531833f4b9" +"muh.indaarr@gmail.com","Muhammad Indar","fa7f0fc6-7449-42ac-a80f-560960345ac4" +"laluarya633@gmail.com","","fae5c5a9-6a26-48d6-b04d-68ebf4d81e7b" +"muhammadfadlanrais@gmail.com","","fbc4c505-01ef-40b2-a257-c2430fe1bdc5" +"rifkybujanabisri@gmail.com","Rifky Bujana Bisri","fc00d1bf-65da-431b-9994-52a3cfc88273" +"alazmimuhammadhabib@gmail.com","Izumi","fc05d2d3-0a55-4407-b20e-99d7bf24a3ec" +"scamgarapan@gmail.com","","fc22e953-b532-48b2-be6a-0fbc3b3774fb" +"fajaralfrzi@gmail.com","","fc701b59-0510-44f3-a85e-0cd22e9f777f" +"imanwealth00@gmail.com","WebDevShoul","fcad381c-ab34-4f62-b6f7-4569c24625f3" +"muhammadalifaditya92@gmail.com","Alif Aditya","fea8d6e4-a831-43a9-b98c-6a29c20dab53" +"udinhilif@gmail.com","Rio Fernanda","fef16ed6-438c-44c0-9070-66d3f602beae" \ No newline at end of file diff --git a/docs/extracted-users.json b/docs/extracted-users.json new file mode 100644 index 0000000..90c40fc --- /dev/null +++ b/docs/extracted-users.json @@ -0,0 +1,2577 @@ +[ + { + "email": "rrrijal24@gmail.com", + "name": "Rijal", + "id": "0081ce77-2dd2-469c-8759-8d1259b6206c" + }, + { + "email": "zulhamrianto@gmail.com", + "name": "", + "id": "0176361f-e403-4aeb-a683-8aa58d1e51a4" + }, + { + "email": "akbarkurniawan790@gmail.com", + "name": "Akbar Kurniawan", + "id": "017917c0-7393-4620-9d17-bc8467f9c521" + }, + { + "email": "auliarestyazizah@gmail.com", + "name": "", + "id": "0293026a-dfbe-4380-89fa-e2d5729a5cea" + }, + { + "email": "alhadad.xyz@gmail.com", + "name": "alhadad", + "id": "0308f526-0dfe-4509-bee8-4aa217ec0a12" + }, + { + "email": "radithamzah12@gmail.com", + "name": "dorrit", + "id": "032c630c-8a20-40ec-b191-ba8e009ab538" + }, + { + "email": "pamungkas.ajiseno@gmail.com", + "name": "Senoaji Pamungkas", + "id": "0331921a-4009-4204-86af-5eb90d6773cf" + }, + { + "email": "gamingarisky@gmail.com", + "name": "", + "id": "05004e6b-9d5c-4a14-af97-496bcd55878b" + }, + { + "email": "bagoesrex@gmail.com", + "name": "Bagus", + "id": "058da640-ac05-498b-8618-f2c5a4455b90" + }, + { + "email": "rizkyseptian401@gmail.com", + "name": "Moc Rizky Septian", + "id": "05d98092-8528-4edf-8b23-9134d67f628b" + }, + { + "email": "excellchriatian12@gmail.com", + "name": "Excell Christian", + "id": "06f7158e-2218-4b61-8129-899bdaeb1eab" + }, + { + "email": "sofyanekafebriyanto@gmail.com", + "name": "", + "id": "07138a28-5e15-4c08-9325-0b17061d913f" + }, + { + "email": "baraskyke7@gmail.com", + "name": "Barasky", + "id": "07203a89-c58b-4df2-aeba-54b4977c8fc6" + }, + { + "email": "cukd3h.hynix@gmail.com", + "name": "", + "id": "073af6af-33aa-4067-820c-2213df0843b0" + }, + { + "email": "tsqf.h29@gmail.com", + "name": "Muh Tsaqif Hafidz", + "id": "073bb0a3-69b5-4b4d-8d47-e30b38690ef5" + }, + { + "email": "azranmu@gmail.com", + "name": "M ASRAN", + "id": "078e1f86-6ca1-4fc2-ab9d-a600a6c5adf0" + }, + { + "email": "gdsudiartika@gmail.com", + "name": "Diar Sudiar", + "id": "08b7eb15-dd74-4704-b8ec-d4e7dbc37c6e" + }, + { + "email": "alfiansa@proton.me", + "name": "Aditia Akbar Putra A.", + "id": "095a9662-4d57-4c76-ae28-8f3685a01d34" + }, + { + "email": "ichaaulia720@gmail.com", + "name": "", + "id": "09ab46a0-1394-4e41-9938-8f3df7f8bf99" + }, + { + "email": "naziq02@gmail.com", + "name": "", + "id": "09cacf8e-467d-4885-a792-11287b68d626" + }, + { + "email": "wahyuskull22@gmail.com", + "name": "Wahyu SA", + "id": "09dd11d7-4dae-4273-ba66-e313d82c7d52" + }, + { + "email": "sulthanzain28@gmail.com", + "name": "Sulthan .Y", + "id": "0a28758d-fbc3-4979-93ae-33011b3a9691" + }, + { + "email": "ivan04.android@gmail.com", + "name": "", + "id": "0a48d044-6e36-46b6-bd4e-bbf7d3f9519e" + }, + { + "email": "muklasputra222@gmail.com", + "name": "Muklas Adi Putra", + "id": "0ab605f9-d525-4e1b-b1ca-7b21da065aff" + }, + { + "email": "rojafadilah0203@gmail.com", + "name": "Roja Fadilah", + "id": "0b380e5f-26dc-41f0-914d-731d7ca00603" + }, + { + "email": "akmalkeisin@gmail.com", + "name": "", + "id": "0b55c37c-48ce-4721-a7bb-52d9913dfcee" + }, + { + "email": "bimasaktiramdani01@gmail.com", + "name": "", + "id": "0c1ddd78-5f93-4272-953b-4640cc769ab9" + }, + { + "email": "gajipgaming@gmail.com", + "name": "Galih Aji Pangestu", + "id": "0cb2e0f9-6afe-458b-afc9-3170bcc18fa4" + }, + { + "email": "pascalsanjaya34@gmail.com", + "name": "Pascal", + "id": "0d4f3960-509d-4ba4-8d03-5fc1c38a4071" + }, + { + "email": "hanifdwyputrasembiring@gmail.com", + "name": "Hanif Dwy Putra S", + "id": "0e87a0f3-5a96-4b87-8e04-e180ed2731ca" + }, + { + "email": "afreezap20@gmail.com", + "name": "", + "id": "0e9fcc3c-4a3f-43c9-bf4f-e4e4c342f7a0" + }, + { + "email": "profyonz@gmail.com", + "name": "", + "id": "0eb6f8b2-f10f-4fa7-bf66-a43ef14a8f63" + }, + { + "email": "kesavadananjaya@gmail.com", + "name": "", + "id": "0ec815c3-a256-4583-909d-b02655d7d09a" + }, + { + "email": "mdwikurniawan976@gmail.com", + "name": "", + "id": "0f0e2cb8-2c21-417a-a577-f5d0662a2efa" + }, + { + "email": "rickyrahmad2001@gmail.com", + "name": "", + "id": "0fa03bff-4be2-4c13-b687-688191c02955" + }, + { + "email": "dimasmaulanaichsan@gmail.com", + "name": "Dimas Maulana Ichsan", + "id": "0fc6770d-fac7-4118-8796-6cae1b18f880" + }, + { + "email": "rikiulir@gmail.com", + "name": "Riki Ulir Niam", + "id": "0fc99cb4-4495-405e-8b2f-3728404d7615" + }, + { + "email": "atmasusanto08@gmail.com", + "name": "", + "id": "100b63a9-7487-4553-b45d-afb2201e4492" + }, + { + "email": "alvarelkevin12@gmail.com", + "name": "Muhammad Kevin Alvarel", + "id": "114bebc7-2422-4c0a-9898-521f94739e7f" + }, + { + "email": "rayid1805@gmail.com", + "name": "", + "id": "118b7324-bfc1-45f7-9282-d0d7fee3510f" + }, + { + "email": "sjr16173@gmail.com", + "name": "M. Salman Alfarisi", + "id": "11dc3951-1a07-4937-bd75-2c29d2770c13" + }, + { + "email": "mhmmdarifrs@gmail.com", + "name": "Muhammad Arif Rahmad", + "id": "134cd84e-4d79-474a-8ccc-09d728ad3f61" + }, + { + "email": "2310512054@mahasiswa.upnvj.ac.id", + "name": "Rafki Aulia Hazli ", + "id": "15154e34-3c02-426a-b02e-003278334a29" + }, + { + "email": "fathamarizkinur@gmail.com", + "name": "", + "id": "151fa86a-5cec-4758-9824-a9d2ecd5385c" + }, + { + "email": "risyadraflan14@gmail.com", + "name": "", + "id": "1552a593-f8e3-4c80-833b-4c5017dea18f" + }, + { + "email": "fauziferdiansyahindo@gmail.com", + "name": "", + "id": "16a7eda3-4296-4754-b88e-dcf4cf61a0eb" + }, + { + "email": "amuhajir3126@gmail.com", + "name": "MamadNewbie", + "id": "16b7a5ea-e664-4de5-86f1-578b5f3cd28c" + }, + { + "email": "fdvkey@gmail.com", + "name": "Bowo Pratama", + "id": "1730c82d-369d-486d-b7cf-887be5383f8e" + }, + { + "email": "wahyusiakrom238@gmail.com", + "name": "ademaswahyu", + "id": "173e56ab-92cc-48dd-9b03-dc8fdca13fde" + }, + { + "email": "abiyuaflah135@gmail.com", + "name": "Abiyu Aflah", + "id": "18405a8a-9016-4db7-97fa-26ab32735df2" + }, + { + "email": "feryaryahidayat@gmail.com", + "name": "Fery", + "id": "19355ab7-f1cb-47c5-9d2d-5eeb9ee4dbff" + }, + { + "email": "rokimiftah@gmail.com", + "name": "Roki Miftah Kamaludin", + "id": "1973ee9d-2e18-46bc-b8df-272d61980a50" + }, + { + "email": "glen.tbjs@gmail.com", + "name": "Jeki", + "id": "197d5875-dc6f-4068-844d-657db670babc" + }, + { + "email": "khulafamanagement@gmail.com", + "name": "", + "id": "198b0b9f-a34d-410f-87cd-d19cfe02ff0c" + }, + { + "email": "12350110343@students.uin-suska.ac.id", + "name": "", + "id": "1a79c0ce-9119-4067-9f00-c91dd01db95e" + }, + { + "email": "rizalalfadlil@gmail.com", + "name": "Hafidz Rizal Al-Fadlil", + "id": "1aabe9b4-297a-4422-b01f-1b02369dc401" + }, + { + "email": "razinsyakib@gmail.com", + "name": "Muhammad Razin Syakib", + "id": "1b473465-ea92-4b48-9c2a-43c67cf45e01" + }, + { + "email": "dodysamarinda@gmail.com", + "name": "", + "id": "1b4cc185-9532-49b2-b0ac-9f03c1dcc045" + }, + { + "email": "superaseph@gmail.com", + "name": "", + "id": "1b97626f-bb01-457b-9638-7576e5af1683" + }, + { + "email": "ku.anime115@gmail.com", + "name": "Muhamad Wisnu", + "id": "1c88251f-951a-4470-a2eb-58118a75ee75" + }, + { + "email": "faizaalfa250@gmail.com", + "name": "", + "id": "1c903d4e-a741-42f9-b27c-37c5d4e9a704" + }, + { + "email": "wandgenius6@gmail.com", + "name": "maulana adam", + "id": "1d209d21-ef69-4bab-8796-cfa4cbf1fa20" + }, + { + "email": "aristiov@gmail.com", + "name": "Aristio", + "id": "1e0fd9f8-e7cc-4381-939d-0f1aac4a0510" + }, + { + "email": "adamabdillah20@gmail.com", + "name": "Adam Abdillah", + "id": "1e38dac1-a94c-4ac1-9ee8-8a53629e9be4" + }, + { + "email": "simarmatarafael11@gmail.com", + "name": "", + "id": "1ea5a152-5463-44b0-975a-3ed019e804b8" + }, + { + "email": "kurniadikiki508@gmail.com", + "name": "", + "id": "21054038-79d8-49a8-8daf-ca4e780cc09a" + }, + { + "email": "alif.ayana48@gmail.com", + "name": "Alif Muhammad", + "id": "21fe034a-a9f6-417d-a6ed-e8c26f3005b8" + }, + { + "email": "minanabdillah4@gmail.com", + "name": "", + "id": "22c19165-8c32-45f6-9e85-683a4aeaa2ec" + }, + { + "email": "gammertag31@gmail.com", + "name": "", + "id": "236035ab-a274-4f6f-869d-6aaaf761e659" + }, + { + "email": "abangiqi@gmail.com", + "name": "", + "id": "240ff65c-897c-40e7-aafd-d2dd1114ea66" + }, + { + "email": "meftah.mafazy@gmail.com", + "name": "", + "id": "27a09ee3-2c61-4b38-a9f9-1f2810488131" + }, + { + "email": "islahulkafaa@gmail.com", + "name": "", + "id": "289c5f8c-5e0f-4bca-8f66-7641d14a7bb0" + }, + { + "email": "zaidanabdulaziz03@gmail.com", + "name": "Zaidan Abdul Aziz", + "id": "29049370-3d6f-4ae3-b44a-fe9d4f6edb89" + }, + { + "email": "adigintings@gmail.com", + "name": "Adi Primanda Ginting", + "id": "2935f1f9-c070-422f-b9e0-b378b16a32c8" + }, + { + "email": "fadhil06akbar@gmail.com", + "name": "", + "id": "29ae041b-b96c-45d0-a0e2-256ccd8b2168" + }, + { + "email": "ilhamfiqri37@gmail.com", + "name": "", + "id": "29f3fcaa-9104-494e-844e-79d827f74a06" + }, + { + "email": "riski01.pku@gmail.com", + "name": "", + "id": "2a57227d-2920-4839-8849-93ef38a41b9e" + }, + { + "email": "bisnis.huruhara@gmail.com", + "name": "", + "id": "2ae31e65-4272-431b-bbc1-59158cc7cf11" + }, + { + "email": "luthlirik@gmail.com", + "name": "luthfi", + "id": "2b47f090-1c0f-4982-8893-c0b1af1409e6" + }, + { + "email": "zackyhokya045@gmail.com", + "name": "", + "id": "2bb1bf7f-cffb-4b1c-9171-a7e653fb6541" + }, + { + "email": "bayanalamahul3@gmail.com", + "name": "", + "id": "2c228e47-a6ad-47c4-984f-99b6e5e8a13d" + }, + { + "email": "nizaram4dhan@gmail.com", + "name": "Nizar Alif Ramadhan", + "id": "2cd4994b-ba50-43c1-9d78-f4311ef31108" + }, + { + "email": "fadhilakbar0612@gmail.com", + "name": "", + "id": "2cf73de4-90a4-4d1b-a8f0-748ab0a621e7" + }, + { + "email": "aryhidayatfebriana@gmail.com", + "name": "Rizky Reza", + "id": "2d0a00a8-2660-4b60-8de6-f85a6ce98b1d" + }, + { + "email": "hadiidandri2000@gmail.com", + "name": "", + "id": "2ea30f2a-fbeb-4af6-b727-bebb0b687939" + }, + { + "email": "ahmadirafif7@gmail.com", + "name": "Rapip", + "id": "2f08b18b-bd87-4d20-9923-26f4759a4b6e" + }, + { + "email": "rve27github@gmail.com", + "name": "Radika", + "id": "2f788a66-e34e-466a-bbfd-3de920711223" + }, + { + "email": "fikricf147@gmail.com", + "name": "", + "id": "311d81bf-5b5e-4519-a33b-cdd0ee0ecc82" + }, + { + "email": "ausathdzil@gmail.com", + "name": "Ausath Ikram", + "id": "31a21f59-ecea-4bea-9a7b-56dc92c00a12" + }, + { + "email": "jono210678@gmail.com", + "name": "", + "id": "34298723-449f-4b95-b6cb-1d7d5ab71540" + }, + { + "email": "rheatkhs@gmail.com", + "name": "Febiadi Wisnu Akbar", + "id": "34bad6e8-3372-4634-ac93-b10f8882bbb2" + }, + { + "email": "sntdashi@gmail.com", + "name": "rawrzn", + "id": "35159d0a-33cd-4c64-a36d-d37c97e595db" + }, + { + "email": "muhammadhidayat0278@gmail.com", + "name": "", + "id": "351fe76c-5a5c-4d5c-a546-f0dd7ccfec0f" + }, + { + "email": "111202213986@mhs.dinus.ac.id", + "name": "", + "id": "35930877-5702-4eab-9d47-87ccf4035583" + }, + { + "email": "khairulumam950@gmail.com", + "name": "khairul umam", + "id": "3631e3e5-3eac-4297-af3c-6d8648510471" + }, + { + "email": "muhammad.jibrilmuqoddas@gmail.com", + "name": "Murphy Lawden", + "id": "369f03f6-dbd3-49a0-af32-ebfb527624b3" + }, + { + "email": "rafibudiansyah@gmail.com", + "name": "", + "id": "37844c0a-f42b-4bdb-9731-ab9722de70dc" + }, + { + "email": "tongkorongankostpaksutha@gmail.com", + "name": "", + "id": "37d7c1ea-d063-4ceb-93ad-9c9784744516" + }, + { + "email": "gilangsukmw@gmail.com", + "name": "", + "id": "38a5bd5f-c462-424b-986b-db04df906813" + }, + { + "email": "muhammadhaikalaziz28@gmail.com", + "name": "Kaal", + "id": "38a738a0-3329-4001-bf88-05d4de6b11d3" + }, + { + "email": "cimicimicilung4868@gmail.com", + "name": "Eka Revandi", + "id": "38cce9e2-df1d-43a5-bf45-595e25744e16" + }, + { + "email": "rizqybelajar8@gmail.com", + "name": "", + "id": "397f8039-f1c9-42ee-88de-b9597caae518" + }, + { + "email": "syaefulloharnas16@gmail.com", + "name": "Syaefulloh Arnas", + "id": "398ae3d5-349e-44fd-9428-f9335f89c511" + }, + { + "email": "oppokunew19@gmail.com", + "name": "", + "id": "39d68abb-2502-4330-b475-51416bf5269c" + }, + { + "email": "hrfahrizzal@gmail.com", + "name": "", + "id": "3ade0045-eb6d-43c8-8781-ea8d281a464e" + }, + { + "email": "rizkyfadillah0890@gmail.com", + "name": "Rizky Fadillah", + "id": "3b04b506-ff39-4c2f-9f8f-182c62e4b6f4" + }, + { + "email": "syahidizanagi@gmail.com", + "name": "", + "id": "3b2fb3a3-9b55-4338-bf09-8952db4371c0" + }, + { + "email": "ryanfebrian729@gmail.com", + "name": "Ryan Feb", + "id": "3b467fcb-af79-4031-85f8-3073e9343058" + }, + { + "email": "hajopan12@gmail.com", + "name": "", + "id": "3b4c66b3-4ec3-465b-998c-32c9ab7bf2b4" + }, + { + "email": "imaim3024@gmail.com", + "name": "AimZ", + "id": "3b5a0b3a-5930-4cbc-ac78-b1d9d20ac460" + }, + { + "email": "rafligamercratf@gmail.com", + "name": "rafly", + "id": "3b901d8e-7c96-483d-b299-98c8e54f5b57" + }, + { + "email": "jojohyperbackend@gmail.com", + "name": "ZeeHyper02", + "id": "3b9e0c60-5a32-4d1c-b011-46390971b67f" + }, + { + "email": "ihenry@gmail.com", + "name": "", + "id": "3c96f60e-d8ab-4e2d-86f6-6a7f4b40c179" + }, + { + "email": "dimsartz021@gmail.com", + "name": "Dimas Tri M", + "id": "3cdffe97-dad4-47e3-825d-d9c13ae815b5" + }, + { + "email": "fathurrahman081296@gmail.com", + "name": "Fathur Rahman", + "id": "3da30612-1885-423f-a836-3cc7ca33add9" + }, + { + "email": "hafidnurazis@gmail.com", + "name": "Hafid Nur", + "id": "3e20b9ee-f566-4b0f-9e4f-cbb92d31031c" + }, + { + "email": "helmiputra265@gmail.com", + "name": "", + "id": "3f60fb92-3440-4f61-82fe-192c6bcdb301" + }, + { + "email": "farhansyamsuddin3@gmail.com", + "name": "", + "id": "3fc8adf4-a75a-4272-a431-a9b614e8dbd3" + }, + { + "email": "fauzanabiyan33@gmail.com", + "name": "Hoshino Abydos ᴾᴿᴼ▄︻デk̷n̷e̷a̷f̷══━一", + "id": "3ff2ae42-a561-4338-ba61-f444409322c3" + }, + { + "email": "bagusindrayanaindo@gmail.com", + "name": "Bagus Indrayana", + "id": "40194320-d827-4a53-bb8f-36303a6713a2" + }, + { + "email": "daunn871@gmail.com", + "name": "Daun", + "id": "41412e38-3b07-464f-93a4-457ed1cf6176" + }, + { + "email": "muhammadirfanbaihaqi538@gmail.com", + "name": "", + "id": "4155a53f-252e-4b44-a951-851ea5cce606" + }, + { + "email": "mujahidislami030@gmail.com", + "name": "Mujahid Islami Primaldi Abdullah", + "id": "41899d5b-9f1f-4ca9-8be8-9837ea83f493" + }, + { + "email": "muhammadkevinalvarel@gmail.com", + "name": "", + "id": "418f738b-2187-4432-957d-15eb258a65bb" + }, + { + "email": "galangryandana@gmail.com", + "name": "", + "id": "433c45f0-1d8e-442e-95c8-bd9c7b97108e" + }, + { + "email": "nasruladitri2@gmail.com", + "name": "Nasrul Aditri", + "id": "43ea0f85-1b69-4235-ae25-523ad1984d46" + }, + { + "email": "muhammadariefcp@gmail.com", + "name": "Muhammad Arief C P", + "id": "43f5ef95-ac4b-4d5e-bf57-b6bf0c30936d" + }, + { + "email": "adityamaullana234@gmail.com", + "name": "Aditya Maulana zidqy ", + "id": "44045f03-964c-4935-9918-cddc36676278" + }, + { + "email": "g4mless@proton.me", + "name": "g4mless", + "id": "44192093-fadb-4be9-8662-d02e9c47a1b3" + }, + { + "email": "justgilang99@gmail.com", + "name": "", + "id": "46769f5b-f33f-4777-aff1-9c25b9c488e8" + }, + { + "email": "jezudu@denipl.net", + "name": "", + "id": "46a4954b-1b91-4647-a5ba-376bbc299402" + }, + { + "email": "alfisahri33@gmail.com", + "name": "alfi sahri", + "id": "473b0a56-7583-43e6-8511-2e73889e9b37" + }, + { + "email": "mraihanaf0@gmail.com", + "name": "Muhammad Raihan Al Farizy", + "id": "47866d52-c02c-44d9-a89d-76ee1103eed9" + }, + { + "email": "obenpasaribu@gmail.com", + "name": "", + "id": "47e2dd3f-339f-4ce5-aa42-4d89a1fd4aea" + }, + { + "email": "2206073@itg.ac.id", + "name": "ZaenalSyamsyulArief", + "id": "48a70338-aa6b-4f22-b5b1-458da13d85c6" + }, + { + "email": "ronyronny12@gmail.com", + "name": "", + "id": "4b5b6fd7-4f79-412b-967e-0437d3c4c6af" + }, + { + "email": "malfathiratir@gmail.com", + "name": "", + "id": "4bda0567-2a5a-4fda-8d8f-a5998e9d8800" + }, + { + "email": "lakazamlak02@gmail.com", + "name": "", + "id": "4c4abd7a-772d-49fe-977a-57a917adbe6a" + }, + { + "email": "nazedev@gmail.com", + "name": "", + "id": "4cdb4fd8-565e-47c7-9559-215a31f4bd1c" + }, + { + "email": "revelcahyadi2004@gmail.com", + "name": "Revel Cahyadi", + "id": "4d2efba3-a0dd-448e-9a40-a7395a15f863" + }, + { + "email": "pulungwicaksono2006@gmail.com", + "name": "Pulung Wicaksono", + "id": "4d9a29b1-080e-47d0-836b-f33dfbf84c6c" + }, + { + "email": "ferospedrosa@gmail.com", + "name": "", + "id": "501c795f-fd27-4f86-900e-fbbbd02474a7" + }, + { + "email": "bilgrandov9902003@gmail.com", + "name": "", + "id": "503377c4-26af-4890-82f1-a3619953b7b7" + }, + { + "email": "gbrnmhd89@gmail.com", + "name": "Gilbran Mahda", + "id": "509825be-9d84-451e-9833-f2bbd5507ade" + }, + { + "email": "jevonit252@gmail.com", + "name": "", + "id": "512805dd-507c-4193-adad-a1cf5f76a777" + }, + { + "email": "iwank31052003@gmail.com", + "name": "Iwan Kurniawan", + "id": "516deb0d-9ec1-4776-835f-6daba29e7c1b" + }, + { + "email": "rifanajieagung48@gmail.com", + "name": "", + "id": "5182dafb-4a12-4bcc-b967-6ea50aefe7d0" + }, + { + "email": "anata@yopmail.com", + "name": "", + "id": "51832f14-1e08-4543-b1a0-d8107573efbc" + }, + { + "email": "fajargustiana2@gmail.com", + "name": "Fajar Gustiana", + "id": "51896ad3-8184-4e4a-a9c8-4eaa39ac8451" + }, + { + "email": "raflyazizabdillah30@gmail.com", + "name": "", + "id": "51bb6cfe-bd23-4ef9-9992-96b4e1c3a7ad" + }, + { + "email": "patrickmarcel65@gmail.com", + "name": "Patrick Marcel", + "id": "51d0ed9b-5d7c-400e-a75e-b3777dae5be8" + }, + { + "email": "auranawamadani@gmail.com", + "name": "Aura N,A", + "id": "529c4fa4-4894-4c88-ba63-857532f7fef3" + }, + { + "email": "ayamkucing129@gmail.com", + "name": "Elang", + "id": "52b81c76-fa09-4e96-8dfd-f405c5c09808" + }, + { + "email": "ayyasi52@gmail.com", + "name": "", + "id": "543eced6-00b4-4227-82b0-13e626fb1c88" + }, + { + "email": "itsandka@gmail.com", + "name": "", + "id": "548a310d-05a7-4b64-9d5b-032d848446fc" + }, + { + "email": "ryanda.valents3649@student.unri.ac.id", + "name": "Ryanda Valents Anakri", + "id": "54db9209-843c-465c-82c2-d8c4ea72dc7e" + }, + { + "email": "noaa277@gmail.com", + "name": "Karakaira", + "id": "54e0cfb9-55b7-4c00-812f-f04296c11a70" + }, + { + "email": "larasrahm22@gmail.com", + "name": "", + "id": "550fc044-10bd-49a1-9c09-50bd4d5325cc" + }, + { + "email": "zrbagus5@gmail.com", + "name": "Bagus", + "id": "5568477e-e7a0-4a93-b1de-0e775414111a" + }, + { + "email": "jonfrymarbun@gmail.com", + "name": "Jonfry Agung Marbun", + "id": "56f8b4f6-f31e-4faf-87f6-acc8d83bd72d" + }, + { + "email": "andika@umpo.ac.id", + "name": "", + "id": "5768d665-77a3-4ae3-b2ee-37e408c0e98e" + }, + { + "email": "snarsaggaf@gmail.com", + "name": "pii", + "id": "576d1650-71c8-4a5c-81c9-dda3284c13c4" + }, + { + "email": "azhararizkyrafi@gmail.com", + "name": "Rizky Rafi Azhara", + "id": "58871899-6d54-4cd5-bbd0-3d9e2cbe5f9f" + }, + { + "email": "safuzi333@gmail.com", + "name": "", + "id": "58ced2da-dd5c-42da-acd5-0082b5e0e835" + }, + { + "email": "putrasyaddad@gmail.com", + "name": "Syaddad Raihan Putra", + "id": "59d3324c-a264-4f60-91ca-96d9d5def00a" + }, + { + "email": "bryanfernandoks11@gmail.com", + "name": "Bryan Fernando Kurniawan Suhartono", + "id": "5a48dc88-25c8-49e8-8a74-36b493584aa8" + }, + { + "email": "saehansa@gmail.com", + "name": "", + "id": "5a8cf51a-fa8a-44ce-ad1a-898c8487513f" + }, + { + "email": "kontakpribadiatsushi@gmail.com", + "name": "", + "id": "5ab3bd8c-27a2-4552-8f0c-98370dff4e3b" + }, + { + "email": "mohkaisanalkalbi@gmail.com", + "name": "", + "id": "5c15338b-c4a0-4071-ab67-c8f29ffaadaa" + }, + { + "email": "bayuardana213@gmail.com", + "name": "", + "id": "5dc2beb9-46c1-4920-9d07-9708de896778" + }, + { + "email": "danufebriansyah09@gmail.com", + "name": "Danu Febriansyah", + "id": "5e0d9e2e-5ced-4f94-9797-b8083778fe0e" + }, + { + "email": "pjuanda12@gmail.com", + "name": "", + "id": "5e91489c-cacf-4050-b46b-4327255ec74a" + }, + { + "email": "muzammilulmuttaqin11@gmail.com", + "name": "", + "id": "5ee5672c-dba1-42b7-b8f9-e76ba4efd21a" + }, + { + "email": "raffida2013@gmail.com", + "name": "Raffi Deas Alvaro", + "id": "5f46ecdb-f025-4fc6-a981-dd4c4c93a52a" + }, + { + "email": "markusdamar2958@gmail.com", + "name": "Damar", + "id": "5f475128-017f-4021-961c-4d58eef63d99" + }, + { + "email": "felixcyro008@gmail.com", + "name": "", + "id": "5fb48143-4d2c-4d71-bf9a-bd9f44647de6" + }, + { + "email": "hazelbigbosshazel@gmail.com", + "name": "", + "id": "5fecab2f-2382-404e-8f8f-ed031332b886" + }, + { + "email": "mhd.rijal203@gmail.com", + "name": "Muhamad Rijal", + "id": "60fbc970-2079-42c8-8dcb-637c466a7f1c" + }, + { + "email": "imovic004@gmail.com", + "name": "movic", + "id": "61c5d3a0-553f-474d-9950-483cb86057df" + }, + { + "email": "samuelmarubamanik@gmail.com", + "name": "", + "id": "625aa73b-69db-473f-baad-6791ff865e40" + }, + { + "email": "muhammad.fahri137296@smp.belajar.id", + "name": "", + "id": "63a19768-b9c4-480d-95c5-2770393935fd" + }, + { + "email": "me@anym.dev", + "name": "", + "id": "63a87b68-4dc0-41c8-a99a-1335c77dd4e0" + }, + { + "email": "kithly19@gmail.com", + "name": "", + "id": "64428bf7-052f-4b7b-95ca-802f76e93dcc" + }, + { + "email": "raissatristan14@gmail.com", + "name": "", + "id": "645e0a22-a055-4cba-a007-37bd9791f882" + }, + { + "email": "fairuzfuadi123@gmail.com", + "name": "", + "id": "653f2a62-66c5-4eae-a7c5-822a85cd2d9b" + }, + { + "email": "ahdan.abde@gmail.com", + "name": "Ahdan Abde Rifai", + "id": "65d6021e-a03c-4661-a3eb-5452cc89b588" + }, + { + "email": "ivanrahmat.p77@gmail.com", + "name": "Ivan Rahmat Prakasa", + "id": "65d79307-2b78-48af-a9d8-750e66126401" + }, + { + "email": "hamzahbaik9@gmail.com", + "name": "", + "id": "65efcb5a-13e3-4552-9336-f7b68705e521" + }, + { + "email": "andrianxyz82@gmail.com", + "name": "", + "id": "6677b5ae-3171-428d-aa61-22464b1ba80f" + }, + { + "email": "billysyahputra630@gmail.com", + "name": "Billy", + "id": "66dbdf3d-3cf0-4d81-810e-185e61b952b7" + }, + { + "email": "yusri.irfani@gmail.com", + "name": "", + "id": "6773b841-2037-4aee-ace1-a8bea7341e25" + }, + { + "email": "reiyhan.aditya@gmail.com", + "name": "Rey Panda", + "id": "68876807-64ed-49f9-91d4-d7f68eb0e6c9" + }, + { + "email": "hexorzplay@gmail.com", + "name": "", + "id": "689872ad-856d-40f6-9d87-86d580394fb4" + }, + { + "email": "codewithwan@gmail.com", + "name": "", + "id": "699646d9-192a-451f-99d1-46d4a42e4eec" + }, + { + "email": "mtaufiksaadi28@gmail.com", + "name": "", + "id": "6a9264f2-2731-4e4a-8e29-9fc1a505e6dc" + }, + { + "email": "alamsantoso.12@gmail.com", + "name": "Emowmow", + "id": "6ab9934d-8f77-4e32-b4db-d09222fa4e44" + }, + { + "email": "kunengrestu@gmail.com", + "name": "", + "id": "6ae98213-5e3a-41c7-b356-03ae6760993d" + }, + { + "email": "andikacahargen2@gmail.com", + "name": "Anka Tama", + "id": "6b62be2c-912d-4809-af64-08ff52aef4b8" + }, + { + "email": "rmz4mc7wg6@privaterelay.appleid.com", + "name": "", + "id": "6bab0fab-6c05-4ed5-9d4d-bbabaf62b513" + }, + { + "email": "handikacoco@gmail.com", + "name": "", + "id": "6bd01f53-7884-40a2-aeb4-34b000120088" + }, + { + "email": "riziqliliulilalbab@gmail.com", + "name": "RIZIQ LILI ULIL ALBAB", + "id": "6d10db2d-3ac2-4008-90dd-141311219c53" + }, + { + "email": "syisahi4696@gmail.com", + "name": "", + "id": "6dd8c78b-9884-4944-b2d4-de2bb8711da6" + }, + { + "email": "akhmadwibu05@gmail.com", + "name": "akhmadkhoirudin", + "id": "6e32e4d3-25e7-47d5-97b5-60955969e22f" + }, + { + "email": "andika.namikaze02@gmail.com", + "name": "Andika Fitra Darmawan", + "id": "6eae5e60-544e-4bf2-81af-7b1138ae967a" + }, + { + "email": "luhalisarafansyah@gmail.com", + "name": "", + "id": "6eb155d0-aea1-41ca-bcdf-7effa9912366" + }, + { + "email": "novianybl@gmail.com", + "name": "Novian Project", + "id": "6ebfa0ad-fde4-42f9-9d0f-8e51e465d534" + }, + { + "email": "boostlivious@gmail.com", + "name": "Raynaldi Siahaan", + "id": "6f089bd4-8829-4a62-8c06-104319116e93" + }, + { + "email": "rasyadbimasatya04@gmail.com", + "name": "Rasyad Bimasatya", + "id": "6f237adc-f724-424c-baf1-4d13f03887e1" + }, + { + "email": "rezyaindisaputra@gmail.com", + "name": "", + "id": "6f43758c-224e-4d9d-9273-f3a3df51a11c" + }, + { + "email": "rahardisalim23@gmail.com", + "name": "", + "id": "6f8a13c1-3836-4715-9181-dc21314cd8af" + }, + { + "email": "alfin.rozzaq.270206@gmail.com", + "name": "Alfin Rozzaq Nirwana", + "id": "6f974b20-6309-4b44-9c7c-165d4cb458c9" + }, + { + "email": "muhammad.toffazal00@gmail.com", + "name": "", + "id": "7055961a-7b40-49d9-ace2-6ce7ad48f14d" + }, + { + "email": "raaflynr@gmail.com", + "name": "", + "id": "706b67c2-e410-4143-a7fa-213d35178db4" + }, + { + "email": "kujouarisu@gmail.com", + "name": "", + "id": "7216ca14-7cff-4d0b-b8c9-70427af21b4a" + }, + { + "email": "rohimsaga7@gmail.com", + "name": "", + "id": "722989b5-f685-4fc3-9bc7-76f04c479d49" + }, + { + "email": "rayhanlubis01@gmail.com", + "name": "Rayhan Lubis", + "id": "72bf1d04-8b95-4f90-a88f-f78c0571d841" + }, + { + "email": "raflyirham1005@gmail.com", + "name": "Rafly Irham Safatulloh", + "id": "73404aea-a007-4629-b9dc-fb26cb307e57" + }, + { + "email": "sopiadi2006@gmail.com", + "name": "", + "id": "7364d4fa-f6f7-429f-a95d-f6775eca6d9f" + }, + { + "email": "haydar130305@gmail.com", + "name": "", + "id": "7462e4b2-b446-4562-9bc8-e08c07d157ef" + }, + { + "email": "arilindra21@gmail.com", + "name": "Moch. Aril Indra Permana", + "id": "748de15d-374a-4756-89e2-75754e90542f" + }, + { + "email": "gundowijoyo7@gmail.com", + "name": "bahaywuj", + "id": "74bd7b16-a75a-4ffd-908d-0b00f6ced98b" + }, + { + "email": "yayohajid@gmail.com", + "name": "", + "id": "74f39d03-eb00-4a6c-81fe-f2d3d2f60cf3" + }, + { + "email": "codesphere01010@gmail.com", + "name": "Dzarel Developer ", + "id": "757980ed-43fe-4092-9d2b-387e86c5b596" + }, + { + "email": "stefanuslay01@gmail.com", + "name": "Stefanus Lay", + "id": "763244a7-0bc5-4668-811f-4e20ae8825bb" + }, + { + "email": "fawfawfaw994@gmail.com", + "name": "", + "id": "76c148f1-fef9-4489-8421-1cb875d7747f" + }, + { + "email": "resa.rahman@gmail.com", + "name": "", + "id": "76da63db-4937-44f4-bd7b-2673db6b7c40" + }, + { + "email": "bryann.carls@gmail.com", + "name": "", + "id": "76e6cd37-478a-45f7-ac57-81ff1b646761" + }, + { + "email": "m.saidibjm4@gmail.com", + "name": "Muhammad Saidi", + "id": "786820eb-eccf-4c57-b05a-9cc4249672c4" + }, + { + "email": "securtydit@gmail.com", + "name": "", + "id": "78d09810-d778-46e4-a69a-c055ebc29998" + }, + { + "email": "helmygarcia67@gmail.com", + "name": "Helmy ", + "id": "793b5a30-f0c7-4dfe-afc8-0e85e7ccd49c" + }, + { + "email": "akbarriansyah339@gmail.com", + "name": "Akbar Riansyah", + "id": "793ce294-f69a-4aba-8259-f20ee2b4c73f" + }, + { + "email": "revanza.firdaus@gmail.com", + "name": "Muhammad Revanza Firdaus", + "id": "79c01c0b-4bff-43af-9ec9-d1fa29f3987b" + }, + { + "email": "rezokushop@gmail.com", + "name": "", + "id": "7a27e0da-9593-40a7-8462-9daf6e96e3ae" + }, + { + "email": "aril.permana@paper.id", + "name": "", + "id": "7a960082-4df8-45fd-99fa-a204d6688caa" + }, + { + "email": "atmasusanto38.imphenhack@gmail.com", + "name": "", + "id": "7b247e32-ed65-4865-a1ce-0e9cc4cb8297" + }, + { + "email": "ihsanwar77@gmail.com", + "name": "", + "id": "7b4b6a6d-1cef-415a-aca3-f98648f0f340" + }, + { + "email": "fsparatos@gmail.com", + "name": "", + "id": "7c30facc-eb6f-412e-88c4-0095f9bfdd1b" + }, + { + "email": "shalahuddin.4332311020@students.polibatam.ac.id", + "name": "Shalahuddin Al-Ayyubi", + "id": "7ca6c4b1-be0e-4993-83d8-0eff8945ea50" + }, + { + "email": "arissetia.m@gmail.com", + "name": "Aris Setiawan", + "id": "7cbcf002-8e92-4b28-bcee-1776ddf5ec86" + }, + { + "email": "andikadwipwf@gmail.com", + "name": "", + "id": "7d5ac7ef-704e-4275-b1b6-59b497548365" + }, + { + "email": "msayyid.rafeed@gmail.com", + "name": "Muhammad Sayyid Rafee' Djamil", + "id": "7da76028-0ed7-434e-b51e-d163cb3d3585" + }, + { + "email": "muhammadriskiakbar2009@gmail.com", + "name": "", + "id": "7ecd33ed-40b6-4236-981f-5319fdd390d3" + }, + { + "email": "bobypratama.dev@gmail.com", + "name": "Muhammad Boby Pratama", + "id": "7f0592c4-b0a6-476d-a436-75a8fe753f32" + }, + { + "email": "akbarrozaq691@gmail.com", + "name": "", + "id": "7f1689fe-9d54-4cec-a1f0-db5ffae98d3b" + }, + { + "email": "220605110044@student.uin-malang.ac.id", + "name": "Ridho Aulia Rahman", + "id": "801d6313-6a1c-45d3-9a64-1db88269e250" + }, + { + "email": "muhammadrestu1108@gmail.com", + "name": "Muhammad Restu", + "id": "805d5fc1-6f9d-4e37-b1bc-514ed4e17bea" + }, + { + "email": "iyandabes1@gmail.com", + "name": "Astha", + "id": "80e0229e-e268-4d22-a0c5-4610bd2b4bdd" + }, + { + "email": "ridhofahmij225@gmail.com", + "name": "Ridha Fahmi J", + "id": "80f24b96-36a6-44eb-a361-26bd04554609" + }, + { + "email": "wisnuajipamungkas354@gmail.com", + "name": "", + "id": "80f40577-19f8-45cb-86d1-dcc60472b9e8" + }, + { + "email": "mgsmfr@gmail.com", + "name": "", + "id": "8177c99d-28f5-4a88-8415-9abea3fb934b" + }, + { + "email": "eguinjonathan08@gmail.com", + "name": "Guinn", + "id": "8268ab9d-acc1-4379-b9e9-331392668db2" + }, + { + "email": "fardanyudhistira16@gmail.com", + "name": "Fardan Yudhistira ", + "id": "83635084-c207-40ee-ac11-742b213fe843" + }, + { + "email": "quyun532@gmail.com", + "name": "", + "id": "83c6b62f-5c95-4e74-b16f-a9f48a9346cc" + }, + { + "email": "zakamaragames@gmail.com", + "name": "Muhammad Ilyasa", + "id": "83cc1c2b-01ba-438c-8c62-7c11a75c531c" + }, + { + "email": "krisnaguntur71@gmail.com", + "name": "", + "id": "840aa041-314a-44cc-8b52-e529b7aab3c3" + }, + { + "email": "mhmdazkanfl@gmail.com", + "name": "Muhammad Azka Naufal", + "id": "8454c75e-b0e4-4c04-a580-c13cddd63f3c" + }, + { + "email": "fajarrahman216@gmail.com", + "name": "Computer", + "id": "848435a2-d024-497a-b020-f320155ef675" + }, + { + "email": "aswinarung2@gmail.com", + "name": "AswinA", + "id": "84fe21f4-c03c-4042-b535-d61d92d33288" + }, + { + "email": "davidk3476@gmail.com", + "name": "", + "id": "85887410-b9e3-4861-8ebb-e35474bfd003" + }, + { + "email": "glenrioariesto@gmail.com", + "name": "GlennJackson", + "id": "865d44a1-be9b-4dbc-8110-02e91a0ad557" + }, + { + "email": "ferta996@gmail.com", + "name": "Ferta Junindi", + "id": "86be6a41-8d6d-4f91-b5d7-782d9a2de14e" + }, + { + "email": "julianisa.ar@gmail.com", + "name": "Fatah", + "id": "8709fc42-9f88-496c-8610-6cae5253cce9" + }, + { + "email": "indraaziz15@gmail.com", + "name": "", + "id": "8786bfb3-7f3e-40ed-9f46-f3ab5b1a938a" + }, + { + "email": "hshino@student.telkomuniversity.ac.id", + "name": "Muhammad Hashfi Hadyan", + "id": "87ce6b8d-af52-449b-a11a-854042633edf" + }, + { + "email": "farhansyahbanna07@gmail.com", + "name": "Farhan ", + "id": "8a1671be-64ea-48ec-9b24-f2589fc33281" + }, + { + "email": "nawvalovsky@gmail.com", + "name": "", + "id": "8b023aff-3d10-44dd-ad30-2251604bd319" + }, + { + "email": "mininsna@gmail.com", + "name": "Minin", + "id": "8bcee28c-19fa-45b8-bc0a-35e97af0110c" + }, + { + "email": "rzkalih330@gmail.com", + "name": "", + "id": "8bf4de04-3335-43cd-9f09-9a0bcddd3e65" + }, + { + "email": "agusse9986@gmail.com", + "name": "Agus Setiawan", + "id": "8c49cb67-5a7b-4bff-bd78-141166b1ce39" + }, + { + "email": "ixanramdhani@gmail.com", + "name": "", + "id": "8ca8015e-07c1-4d57-86f0-3223165b10af" + }, + { + "email": "bagas101021@gmail.com", + "name": "Bagas Pamungkas", + "id": "8d3cdd6e-cf34-4462-a2b3-91874bda4839" + }, + { + "email": "maulidanfaka391@gmail.com", + "name": "Faksz", + "id": "8e4ccb11-d491-4aaf-bf78-15fa333ea71d" + }, + { + "email": "mugteadotco@gmail.com", + "name": "MugTea", + "id": "8e907eae-5137-4499-a13b-11fd89106ae4" + }, + { + "email": "denandragagono@gmail.com", + "name": "", + "id": "90b98bc8-3d98-428f-8549-07457cf4bda0" + }, + { + "email": "trian.radis448@gmail.com", + "name": "Trian Radis Pengestu", + "id": "91064af2-a72c-4c48-9cd5-acdc2b6527f9" + }, + { + "email": "mnazriel177@gmail.com", + "name": "", + "id": "9130249c-c366-4c47-9d4e-337c35abce6a" + }, + { + "email": "onesta928@gmail.com", + "name": "", + "id": "91582716-23d1-42f9-afc8-6eb857bcc289" + }, + { + "email": "dimasmaulana.idn@gmail.com", + "name": "Dimas Maulana", + "id": "917aa59a-bf05-47af-a26b-f78f9faeaac0" + }, + { + "email": "naufalhaidar946@gmail.com", + "name": "", + "id": "91c5e840-3758-4c7f-9dcc-b621b6ba4d10" + }, + { + "email": "sandysyarifhartanto@gmail.com", + "name": "Sandy Syarif", + "id": "92e971bf-863c-4d66-a522-81a1a864c56c" + }, + { + "email": "77leviann@gmail.com", + "name": "", + "id": "93cc57f9-48c5-4b71-83bd-63bac1f5717a" + }, + { + "email": "roxyuciha@gmail.com", + "name": "Robbanie", + "id": "93d67e12-dbf6-4df7-882f-38ff471c9cf5" + }, + { + "email": "thisiswahibza@gmail.com", + "name": "", + "id": "93ffb004-f16d-4dd8-bd4e-55384c056138" + }, + { + "email": "raazan.muhammad.ikhsan@gmail.com", + "name": "Razan Muhammad Ikhsan", + "id": "953d0ce6-49ee-4606-9616-23b204e61710" + }, + { + "email": "farilpratamap@gmail.com", + "name": "", + "id": "955d4a9e-7e58-4210-86af-d38f8794a565" + }, + { + "email": "candraggml@gmail.com", + "name": "", + "id": "9665ef56-2b46-4883-bd1d-29d20c5a6f98" + }, + { + "email": "aulianaufaln@gmail.com", + "name": "", + "id": "9815d40b-d962-4a75-8383-8993407f89a7" + }, + { + "email": "rubenrextonb@gmail.com", + "name": "", + "id": "98236b68-a066-4538-9ae5-d5b063961244" + }, + { + "email": "bettyindrawati4@gmail.com", + "name": "Betty Indrawati", + "id": "98352ac8-241d-4433-b61b-60d9904b7999" + }, + { + "email": "alfandy115@gmail.com", + "name": "Alfandy Afriandani", + "id": "98a8d32e-1408-4f29-a374-fba3470bbe7c" + }, + { + "email": "zahranvidian@gmail.com", + "name": "", + "id": "9939f383-0ee4-4b8e-be03-08977324edd0" + }, + { + "email": "alifr5353@gmail.com", + "name": "Alif Ramadhan ", + "id": "9a5f346e-dcfe-47d2-9e43-80dd353d46e3" + }, + { + "email": "gn.mailwork@gmail.com", + "name": "Grafis Nuresa", + "id": "9acbdac5-f7aa-4834-90c4-4d19d67410f4" + }, + { + "email": "zexceed12300@gmail.com", + "name": "Ihsan Nul Amri", + "id": "9b067871-2da9-48e7-b15f-1e604d422d33" + }, + { + "email": "haikalrafifas@gmail.com", + "name": "Haikal Rafif", + "id": "9b212b4f-a019-48cd-9e6a-0f9d3c0ada4d" + }, + { + "email": "novealdioardhan@gmail.com", + "name": "ardhan novealdio", + "id": "9b9b68e3-f8fa-47a2-a47b-13af2d5cb22f" + }, + { + "email": "nabilpasha230606@gmail.com", + "name": "Nabil Pasha", + "id": "9c63cf90-68af-4566-aa74-562a9a10d73a" + }, + { + "email": "nash.collage.life@gmail.com", + "name": "Muhammad Nashrulloh", + "id": "9c963bbf-6eb0-46c8-86ce-ebf1d0d09b38" + }, + { + "email": "hhhh25737@gmail.com", + "name": "Muhammad Ridwan", + "id": "9cb022e2-1f94-414d-b9cb-c1781d676a72" + }, + { + "email": "samuelsiallagan49@gmail.com", + "name": "", + "id": "9cf09ee4-6ce0-4afe-a36e-9f472035cb34" + }, + { + "email": "sirrauf412@gmail.com", + "name": "Sir Ananda Rauf", + "id": "9d4ccd3e-c2c1-4ef9-9fda-007403908ecc" + }, + { + "email": "bentambunan20@gmail.com", + "name": "", + "id": "9d539268-8beb-4e57-80fd-6d2293776528" + }, + { + "email": "falihafiq1928@gmail.com", + "name": "Muhammad Falih Afiq", + "id": "9d8a38c3-e631-4b31-8f86-e3f6408f7330" + }, + { + "email": "muhammadalfathir@smkwikrama.sch.id", + "name": "", + "id": "9e26cc6f-048d-41a1-b657-4f06f5198aaa" + }, + { + "email": "hazizhaziz549@gmail.com", + "name": "", + "id": "9e63c2d8-d2c2-4ac7-9c2e-226965c4f402" + }, + { + "email": "hekate071@gmail.com", + "name": "", + "id": "9eb70e94-b963-4f4c-9852-7f6e95e7987f" + }, + { + "email": "mramdani1230@gmail.com", + "name": "MRamdani", + "id": "9f472bbd-aedb-49be-b8bf-0473d55f2622" + }, + { + "email": "dewarahmat1233@gmail.com", + "name": "Matt", + "id": "9fece7da-1c1d-4e07-843c-9cd26aee60b5" + }, + { + "email": "derriverse@gmail.com", + "name": "", + "id": "a0148ac9-002a-420e-bc23-ac7b3ee9a33c" + }, + { + "email": "jalagohu@denipl.net", + "name": "", + "id": "a050ea6f-8d2c-4b4b-9f64-306517b63613" + }, + { + "email": "muhammadrobisasaki@gmail.com", + "name": "sasakirooo", + "id": "a2770339-e7e6-4b20-9cfe-99c8d2471930" + }, + { + "email": "triwibowoilham2@gmail.com", + "name": "Muhammad Ilham Triwibowo", + "id": "a2c1d665-f360-4cd8-a313-5fee29b91d6e" + }, + { + "email": "yuratamma@gmail.com", + "name": "Zidna Fadla", + "id": "a2e938b8-7403-4e25-bc34-63b9838983a6" + }, + { + "email": "sudo.rusydi@gmail.com", + "name": "", + "id": "a32c0e81-1fbd-4bec-8e91-4cd6d10f553b" + }, + { + "email": "nazihelfikar68@gmail.com", + "name": "", + "id": "a42e221f-c198-463f-ac11-84060fd9b494" + }, + { + "email": "adzthariq@gmail.com", + "name": "Muhammd Thariq Adzikra", + "id": "a4c434da-2491-40b2-aa57-7b4aa53a69c1" + }, + { + "email": "saintparid@gmail.com", + "name": "Saint Jameson Parid", + "id": "a53db442-4a6b-4431-afe1-b9d148b977fb" + }, + { + "email": "asja77502@gmail.com", + "name": "lioXploitcs ", + "id": "a57807e3-bafb-4c4c-b23e-ba57c43c2cc2" + }, + { + "email": "realdrenzzz@gmail.com", + "name": "Drenzzz.", + "id": "a5ea628a-24d9-4754-b461-3eda53da53bf" + }, + { + "email": "maldenai76@gmail.com", + "name": "", + "id": "a5ee4302-50ff-4463-8f47-9cf60b414960" + }, + { + "email": "yogaagustiansyah01@gmail.com", + "name": "Yoga Agustiansyah", + "id": "a60c10f3-d73a-4953-8d2c-1e413c881470" + }, + { + "email": "masuwha@gmail.com", + "name": "", + "id": "a6acc3eb-6b59-4d31-881a-c4a1aecf8cfc" + }, + { + "email": "jazaniezt07@gmail.com", + "name": "M. Abdillah Aljazani", + "id": "a81baf2a-b875-4c86-84ab-618f403abc60" + }, + { + "email": "rickogurning333@gmail.com", + "name": "", + "id": "a8e87809-36a3-467e-8a49-8a730bb70724" + }, + { + "email": "zakyfarhan1326@gmail.com", + "name": "Zaky Muhammad Fauzi", + "id": "a90a9400-0576-4708-8912-c630807b9391" + }, + { + "email": "sandysyarifhhartanto@gmail.com", + "name": "", + "id": "a91c8500-69fd-4602-9795-779d006a305e" + }, + { + "email": "andra.pratama@riswan.com", + "name": "", + "id": "a927c690-8ebf-44eb-bf97-1d780729a2c4" + }, + { + "email": "naufalyuprata@gmail.com", + "name": "", + "id": "a93fd9dd-3e36-4ba1-b668-988dc2d186c6" + }, + { + "email": "mubarrokwildan1@gmail.com", + "name": "Akazano_abe", + "id": "a9807283-d4de-4990-8985-b22ded98e4cd" + }, + { + "email": "fackyouu128@gmail.com", + "name": "Reza A Maulana ", + "id": "a997e674-f927-474b-b817-9543f722aa9b" + }, + { + "email": "riantrito@gmail.com", + "name": "", + "id": "a9dfd864-faa1-452a-b074-8498e6e08af5" + }, + { + "email": "alhikam200@gmail.com", + "name": "ΑlhikamΔirga⌘", + "id": "a9f7ded3-ed87-486b-bd11-0d4b3cb5d9a7" + }, + { + "email": "afiffahriafrizall@gmail.com", + "name": "", + "id": "aa088d9f-7251-4673-ad6b-88261666710b" + }, + { + "email": "miawspecialist@gmail.com", + "name": "iyep", + "id": "aa42b892-74dc-4a00-85b5-c7f78127c4e9" + }, + { + "email": "muhammaddean27@gmail.com", + "name": "Muhammad Dean Fahreza", + "id": "aa4ba09e-4ed0-449c-ba98-5441844f022b" + }, + { + "email": "harissabil04@gmail.com", + "name": "Muhammad Haris Sabil Al Karim", + "id": "aa9d683d-0787-4279-8085-541459b1d8fa" + }, + { + "email": "quyunisnawan34@gmail.com", + "name": "", + "id": "ab36232b-b46c-4d30-8bb3-9b11e3e9ac7b" + }, + { + "email": "mnabilfs22@gmail.com", + "name": "Muhammad Nabil Farras Sulthan", + "id": "ab89f5c9-95fe-4808-81be-9bdc9c3b21ec" + }, + { + "email": "mochamadrifkyrifaldy@gmail.com", + "name": "rifkyrifaldy", + "id": "aba1da85-d87b-4d52-bea9-35639c4f1d64" + }, + { + "email": "muhammadyustanzah@gmail.com", + "name": "", + "id": "ada3b4d9-745b-41c2-95b5-1a8275e29882" + }, + { + "email": "sulfikaralijun@gmail.com", + "name": "Sulfikar Alijun", + "id": "adbd7ccc-252f-40c4-b5db-8940392da7e2" + }, + { + "email": "mitsuhaadly@gmail.com", + "name": "Adeley", + "id": "aef3f5b3-23b0-44e7-aa73-edab6ab20c6e" + }, + { + "email": "mobilezero24@gmail.com", + "name": "Muhammad keisya fadilah", + "id": "af8d0e16-0358-4d96-b822-a4023b06752d" + }, + { + "email": "arvardy@student.ub.ac.id", + "name": "", + "id": "b022268c-2ac3-43a7-a5cf-c0bae568477a" + }, + { + "email": "zulfikarm022@gmail.com", + "name": "", + "id": "b04d2b39-25c2-4e65-a28f-8b35edeb6137" + }, + { + "email": "hasrinata@gmail.com", + "name": "Hasrinata Arya Afendi", + "id": "b1171213-ed39-4333-b58f-2424d3d2b9fe" + }, + { + "email": "wahyuikbal777@gmail.com", + "name": "wahyu ikbal maulana", + "id": "b1e1ba24-35fe-4dd7-b37f-77d42314b3d9" + }, + { + "email": "rafiadly259@gmail.com", + "name": "", + "id": "b21cde91-57f4-4f4e-b082-9130dcaff5a6" + }, + { + "email": "rakhaakbar522@gmail.com", + "name": "Muhammad Rakha Akbar", + "id": "b2208e46-26b9-497c-9105-7bfff4fd89f3" + }, + { + "email": "diwapraset02@gmail.com", + "name": "Diwa", + "id": "b22a09b9-7079-49c9-9734-0f69f73cdd67" + }, + { + "email": "anakriryanda@gmail.com", + "name": "", + "id": "b26a5fba-f01d-49eb-a0ab-b0fa67d846a8" + }, + { + "email": "sxntient.labs@gmail.com", + "name": "", + "id": "b2fb784d-cf93-4d45-a8bf-0fbbefdb8761" + }, + { + "email": "vlakasofficial@gmail.com", + "name": "Fauzan", + "id": "b35057c8-d5c3-4e20-b027-025f3d959398" + }, + { + "email": "sandifadel739@gmail.com", + "name": "", + "id": "b43dfb80-8037-4478-a050-e28b0b0e243c" + }, + { + "email": "alfawwaz.naufal13@gmail.com", + "name": "Naufal Al F", + "id": "b44432b9-c6ce-472c-b53b-fe6f838cc283" + }, + { + "email": "ilhampradani8@gmail.com", + "name": "", + "id": "b49fddfb-0be3-4d4f-a6d3-927c14ac9b81" + }, + { + "email": "divoveenda@gmail.com", + "name": "Veenda Putri Divo", + "id": "b4c53c87-6310-4143-bccf-94ee0440c17d" + }, + { + "email": "fazaradityarma@gmail.com", + "name": "Faza", + "id": "b50caf6d-e433-43d8-bef2-1ff073b13027" + }, + { + "email": "muhyusufsyamsyam@gmail.com", + "name": "Yusuf Syam", + "id": "b5113861-be40-4651-8ab2-33a8051656a7" + }, + { + "email": "koding12sam@gmail.com", + "name": "Muel", + "id": "b569b9c4-b173-45a4-b022-5bd0607e84be" + }, + { + "email": "zenaufa@hotmail.com", + "name": "", + "id": "b5a1b1e9-3bb5-4076-88a1-d36ce4dde6fc" + }, + { + "email": "naufalfadhilah689@gmail.com", + "name": "Muhammad Naufal Fadhilah", + "id": "b6a3051f-1890-440e-9956-c380e2b5c139" + }, + { + "email": "putrosrv@gmail.com", + "name": "", + "id": "b6ad4101-23d4-427c-9376-964cf995fc18" + }, + { + "email": "fajarskyy833@gmail.com", + "name": "", + "id": "b732bc7c-b3c7-4a79-8529-4622445343f3" + }, + { + "email": "fuwafuwa@tiffincrane.com", + "name": "", + "id": "b76b604d-9621-4aaf-bdf1-bc2da2f8248f" + }, + { + "email": "aminaprzaa@gmail.com", + "name": "", + "id": "b7e71f93-6fce-4ef0-8eae-1a15634bcb9e" + }, + { + "email": "abdurrahman.hafizh02@gmail.com", + "name": "", + "id": "b7f0d89b-6bdf-40dd-b5ca-442130b12c00" + }, + { + "email": "apriliyantoecha1@gmail.com", + "name": "Echa Apriliyanto", + "id": "b8350a6f-621e-4c2f-9d2b-cf79c2a2f091" + }, + { + "email": "rizkysrg62@gmail.com", + "name": "", + "id": "b864e321-9c43-422a-b980-c91809d3039a" + }, + { + "email": "kuncibatara@gmail.com", + "name": "", + "id": "b9066990-a721-40f9-8478-5f806c80c751" + }, + { + "email": "lotteaquamarine@comfythings.com", + "name": "", + "id": "b96bc4aa-4a97-40cc-be49-2560df93751a" + }, + { + "email": "zlutfhi89@gmail.com", + "name": "", + "id": "b9bb3ff3-5539-4b48-8101-90517a06cc42" + }, + { + "email": "theownerkill432@gmail.com", + "name": "", + "id": "b9ef4db0-6b7b-4dba-aef7-9434ce104e07" + }, + { + "email": "aryandasanggadiennata26@gmail.com", + "name": "R3X", + "id": "bb1696b1-7f82-46fa-805b-6ec79e673e40" + }, + { + "email": "rickyricko302@gmail.com", + "name": "Ricky Verdiyanto", + "id": "bbbf243b-f08e-4911-b4bd-838200c50cb5" + }, + { + "email": "nalindasepti@gmail.com", + "name": "", + "id": "bbc5e3e7-cd72-4739-81c6-199876b02084" + }, + { + "email": "gamerzcraft37@gmail.com", + "name": "Gazach", + "id": "bbfac7a8-2a13-48a2-9f29-499f33d68b8c" + }, + { + "email": "rewyzzi@gmail.com", + "name": "", + "id": "bc02bb7b-8193-4ddc-b8ca-d858b212de2e" + }, + { + "email": "alfanhuda2004@gmail.com", + "name": "Alfanhuda", + "id": "bc2bec53-ee17-40f7-9640-9556745a171a" + }, + { + "email": "tengkusripratiwi1608@gmail.com", + "name": "", + "id": "bd35df8a-9a78-4b14-aa8b-8366e9de58bd" + }, + { + "email": "bataraa@proton.me", + "name": "Batara Krisna Danduru", + "id": "bdb30d1b-9754-4333-b7e0-bce7e7f9ebda" + }, + { + "email": "hayyannashrulloh25@gmail.com", + "name": "", + "id": "be5f3f84-3435-4800-b019-3b6564113004" + }, + { + "email": "050393537@ecampus.ut.ac.id", + "name": "Fahrur Rozi", + "id": "be83a7e1-abf4-43ca-a23c-d335449b844f" + }, + { + "email": "arivopwenz@gmail.com", + "name": "Ari Prabowo", + "id": "be9d3160-e00e-4547-bbdd-c6546fe0af71" + }, + { + "email": "faaldy16@gmail.com", + "name": "Aldi Fauzi Ilmamuslim", + "id": "beb5d548-c976-4110-87f2-75d4f8465e2b" + }, + { + "email": "arbasfardan@gmail.com", + "name": "Fardan Arbaz", + "id": "bef2164a-6f12-4d69-847e-5d6ac19f554f" + }, + { + "email": "bwfzbw@gmail.com", + "name": "jarss (zharfan)", + "id": "bef8c2ba-c959-4896-a0d3-463e2f77570b" + }, + { + "email": "nabielilyasa133@gmail.com", + "name": "", + "id": "bf0d6b84-0508-4917-8ff5-e23e1d3ce23b" + }, + { + "email": "xecloud4@gmail.com", + "name": "A. Abqory", + "id": "bfacc996-8020-41fe-b323-c5c3dac7f425" + }, + { + "email": "christiannathanielp@gmail.com", + "name": "Christian Nathaniel", + "id": "c00a24fd-44b7-477a-9048-05007fdfd76e" + }, + { + "email": "ardyrkm23@gmail.com", + "name": "", + "id": "c048d109-8d91-49f2-b04f-fc86866c1487" + }, + { + "email": "risfarishk@gmail.com", + "name": "", + "id": "c084728e-f1c0-4775-b0b5-10ab0441bab6" + }, + { + "email": "awannshafwan@gmail.com", + "name": "Awan", + "id": "c0f6b85a-4723-484d-8fdf-713f7e5aa9f7" + }, + { + "email": "willygurning14@gmail.com", + "name": "", + "id": "c19ad425-8df8-4b37-8f35-797767f48672" + }, + { + "email": "0110224081@student.nurulfikri.ac.id", + "name": "Raffa Yuda Pratama", + "id": "c288a2df-a1e6-4beb-a6ea-aab0b7f912df" + }, + { + "email": "240605110160@student.uin-malang.ac.id", + "name": "", + "id": "c478b5f7-fc09-4b97-8354-e8889f852450" + }, + { + "email": "muhammadsultansyah14@gmail.com", + "name": "Muhammad Sultansyah", + "id": "c4aa882a-bfc2-4a1c-a9e7-89f9a37b9fba" + }, + { + "email": "grecyllagrecy@gmail.com", + "name": "", + "id": "c5611544-3041-4a31-866a-84ad0b781aca" + }, + { + "email": "ilhamthaariq@gmail.com", + "name": "Muhammad Ilham Rijal Thaariq", + "id": "c5ecbd2b-8d7b-4440-a75e-2bb58b1ed8cb" + }, + { + "email": "basukiridhoalghifary@gmail.com", + "name": "basukiridho", + "id": "c6323853-13e3-49dc-972c-a7cb789f0b32" + }, + { + "email": "kacunghabibiganteng@gmail.com", + "name": "KacungHabibi™", + "id": "c6dab1e3-8177-4784-936b-364a9e58a076" + }, + { + "email": "nhardiansa@gmail.com", + "name": "Nabil Hardiansa", + "id": "c79d4b2b-e63f-4187-a8cd-520fde333ab3" + }, + { + "email": "bhosya27@gmail.com", + "name": "Bowoksae", + "id": "c8f35350-384f-4933-be59-d785dbe06abc" + }, + { + "email": "m.sadiqin46@gmail.com", + "name": "MuhammadSadiqin", + "id": "c92b26ed-ddc1-45e7-9a17-f2d2ea7b9d2f" + }, + { + "email": "gayuyunma1123@gmail.com", + "name": "", + "id": "c978891b-71d3-423a-8c97-5648304f5a47" + }, + { + "email": "akbarriffani19@gmail.com", + "name": "LebahRajin", + "id": "c9b2c04a-5027-4ccb-bd0b-2c26c7e9f619" + }, + { + "email": "ajangrahmat@gmail.com", + "name": "Ajang Rahmat", + "id": "ca299304-dfa7-49ba-aa1d-0ed259ffe0fc" + }, + { + "email": "auliyanihlah@gmail.com", + "name": "", + "id": "caa569eb-822e-418c-93aa-df23563a178c" + }, + { + "email": "razandirgham@gmail.com", + "name": "", + "id": "caaaf8b5-ac4b-40b5-9549-f0f8ec9d6cd1" + }, + { + "email": "profadlibae@gmail.com", + "name": "Acmad Fadli Aditama", + "id": "cabaade4-b256-4798-844a-78f36cb16b0b" + }, + { + "email": "atnandimas@gmail.com", + "name": "Adnan Rohmat K", + "id": "cb2161a5-7c09-4360-908b-f2e629be1cda" + }, + { + "email": "sitizahraazizah23@gmail.com", + "name": "Siti Zahra Azizah", + "id": "cc7e4a74-7c3d-44cd-af91-a1b9326cb13e" + }, + { + "email": "nurdin99.ek@gmail.com", + "name": "Nurdin", + "id": "cd64c94d-ca81-4169-bb4d-e2af2dba4a55" + }, + { + "email": "fauzanhabib56@gmail.com", + "name": "", + "id": "cd7ebe7e-a914-457f-be95-2e6256342552" + }, + { + "email": "reyhananf7@gmail.com", + "name": "", + "id": "cdab11c6-ef41-4e2c-ad9d-f9636681e9f0" + }, + { + "email": "loidthegost@gmail.com", + "name": "", + "id": "ce458e26-313e-47cd-937d-e5e95f77a136" + }, + { + "email": "omnidevv@gmail.com", + "name": "", + "id": "cf1eadaa-a313-4760-808e-37dc70446ccf" + }, + { + "email": "m.ilhamjaya1808@gmail.com", + "name": "Muhammad Ilham Jaya ", + "id": "cfc296db-5cd7-4485-b8d0-ba330f5c148c" + }, + { + "email": "risbulgt@gmail.com", + "name": "", + "id": "d00b9542-2bc4-4a1c-acca-e2e58f7363e5" + }, + { + "email": "lembahku@gmail.com", + "name": "", + "id": "d15d8329-a248-4339-8090-69c40ca2a050" + }, + { + "email": "fcrizkywijaya@gmail.com", + "name": "Farid Rizky Wijaya", + "id": "d1c950e6-fb9e-4d53-9c2c-e77477a9a1eb" + }, + { + "email": "bimaadam.dev@gmail.com", + "name": "", + "id": "d263ee7e-e4fb-4b55-a5d9-0207520e0fa8" + }, + { + "email": "felixarajiph@gmail.com", + "name": "Rajiph iqbal", + "id": "d350da40-7543-4073-b6a5-95c79d705dd3" + }, + { + "email": "ahmadfawwaz103@gmail.com", + "name": "", + "id": "d396661f-c733-4991-a212-76b9e4ecb02c" + }, + { + "email": "hafizpramudya17@gmail.com", + "name": "Nflz", + "id": "d44ab980-6982-46b3-8da5-fafef0dedd9f" + }, + { + "email": "johnobama24keren@gmail.com", + "name": "Hiuaaaaa", + "id": "d4953c02-1a07-476c-b5ca-7dfd1e91d28c" + }, + { + "email": "aliakbar06110@gmail.com", + "name": "", + "id": "d4d2c768-3296-40fa-8c87-3bf0b9a54fac" + }, + { + "email": "sanjaya28051@gmail.com", + "name": "", + "id": "d5ff8a92-2b82-42b9-a143-2cd8c376c1ef" + }, + { + "email": "nawvalovsky@proton.me", + "name": "", + "id": "d731aa31-8893-4496-ad36-db71729e3419" + }, + { + "email": "agung.astanto14@gmail.com", + "name": "", + "id": "d744ffbb-7011-43b6-a4f8-7ef2f105ba12" + }, + { + "email": "yumpp24@gmail.com", + "name": "", + "id": "d7587b8e-51fb-404b-ae31-7f5a86c85119" + }, + { + "email": "novandiramadhan80@gmail.com", + "name": "", + "id": "d8f27598-3fed-47da-be14-86c59f70387a" + }, + { + "email": "sfatimaple@gmail.com", + "name": "Sfatimah Azzahra", + "id": "d937a04d-da2e-46e0-9e38-b36d244f8daa" + }, + { + "email": "andriscreen@gmail.com", + "name": "Andri Irawan", + "id": "d938e47a-5a8d-41c2-9952-c42c7d83f291" + }, + { + "email": "suryami62@outlook.com", + "name": "Surya Ramadhan", + "id": "d9a4b3e0-eed5-4c63-984f-096a8fb0a03d" + }, + { + "email": "abdalhaqqm@gmail.com", + "name": "Abdalhaqq Muhammad Saih", + "id": "d9b2f557-027c-4c2e-85e0-f157f2df4917" + }, + { + "email": "alijun.dev@gmail.com", + "name": "Sulfikar Alijun", + "id": "da349dec-eee1-4ed4-bd97-d8322f1ab36e" + }, + { + "email": "warsenosetyono@gmail.com", + "name": "Warseno", + "id": "daaf8fd0-2660-4462-990b-9eab46df6f47" + }, + { + "email": "kemasmuhammadalqodri@gmail.com", + "name": "", + "id": "db3ca0d6-67c6-48c0-9da1-e4b45ca3f921" + }, + { + "email": "fadlankurahan2@gmail.com", + "name": "", + "id": "dd022635-06ed-4ce2-85c1-7026c954e5c7" + }, + { + "email": "iqbalharimurti1@gmail.com", + "name": "krenz", + "id": "dd38bb9b-c45d-4ce2-b4b3-f99b8c8d7e82" + }, + { + "email": "obarya24@gmail.com", + "name": "Afdaan", + "id": "dde9ea50-6a95-4a73-a7cf-0c1e9e457c56" + }, + { + "email": "jexawe1022@okcdeals.com", + "name": "", + "id": "de072603-83a0-4d19-b601-d7bd25534d3d" + }, + { + "email": "mdjauharil29@gmail.com", + "name": "Areal", + "id": "de4190a8-2a66-4e96-aaf6-c3fb0ca838a7" + }, + { + "email": "diasdigital03@gmail.com", + "name": "Dias", + "id": "dea38d11-ef5f-492c-b107-17b509326138" + }, + { + "email": "apirahman55@gmail.com", + "name": "Api Dev", + "id": "df939ac3-de24-473c-8006-cf512fec4e10" + }, + { + "email": "rvlionxz@gmail.com", + "name": "Reval Maulidan", + "id": "dfad62ce-3285-4d1d-8ad6-8cb3a618a3e8" + }, + { + "email": "tsqf.hx@gmail.com", + "name": "", + "id": "e09e8094-49ae-4cb0-9e25-8cb548f6b37e" + }, + { + "email": "bloomsky133@gmail.com", + "name": "", + "id": "e18f82ff-7809-4274-b81c-b3dae3bac731" + }, + { + "email": "asepharyanalm001@gmail.com", + "name": "Asep Haryana Saputra", + "id": "e198581d-62bc-4098-8dc8-94302face1d9" + }, + { + "email": "kussokurae990@gmail.com", + "name": "", + "id": "e1dc4e80-c85e-440f-977e-32ac86ac4a8e" + }, + { + "email": "kaoricicak000@gmail.com", + "name": "", + "id": "e210703d-e0f2-493a-b976-ad02b714fd4d" + }, + { + "email": "felixvalentino58@gmail.com", + "name": "", + "id": "e21dbd95-0379-4087-84d4-735a7e280990" + }, + { + "email": "ferdialf.dev@gmail.com", + "name": "FerdiAlfian_", + "id": "e2248b8b-b6cb-4a9c-9746-eba0bc8d03ce" + }, + { + "email": "rafiqgans32@gmail.com", + "name": "Ainur Rafiq", + "id": "e26b3480-1f75-4038-9c73-c5db5c478e08" + }, + { + "email": "thed0704@gmail.com", + "name": "", + "id": "e27f8e2b-2ba4-41c8-8ef1-1a1c8299ec38" + }, + { + "email": "voidstayprivate@proton.me", + "name": "Corteza Familia", + "id": "e4747f46-e751-4e42-8190-5c8be219d50e" + }, + { + "email": "hoshikochan93@gmail.com", + "name": "Rechan Dinata", + "id": "e5770488-35c2-4298-a97e-b79f863c0c2a" + }, + { + "email": "ytbchanelsukiran@gmail.com", + "name": "", + "id": "e582bdf9-209e-4aa0-b052-043a664a5a27" + }, + { + "email": "putraaldhyansyah@gmail.com", + "name": "", + "id": "e59ed718-2a1b-4f86-a4e1-6063384a5fc1" + }, + { + "email": "gilarwaluyo@gmail.com", + "name": "Abimanyu Gilar", + "id": "e5d0bd59-1f07-49b7-8242-4ddb620e2a8b" + }, + { + "email": "noisyboyss887@gmail.com", + "name": "Kangmas Darr", + "id": "e65bf229-f745-41b4-a54e-875a765aa745" + }, + { + "email": "farelfebryan06@gmail.com", + "name": "", + "id": "e68e50fd-fc75-42a0-8b84-70bfaf508d01" + }, + { + "email": "wisdom.wahyuaji@gmail.com", + "name": "Wisdom Wahyu Aji", + "id": "e6a9a555-7af1-4abb-8ad7-1162e3be258a" + }, + { + "email": "b19marcel@gmail.com", + "name": "", + "id": "e6c844ce-a58a-414e-b0e3-8daf404a79f5" + }, + { + "email": "devakhri.farhan@gmail.com", + "name": "Devakhri Farhan ", + "id": "e725132c-af86-4da9-a220-57288a436ab2" + }, + { + "email": "haikaljitra35@gmail.com", + "name": "", + "id": "e7bec056-7f63-4642-a763-afa39c3c340e" + }, + { + "email": "evanluis198@gmail.com", + "name": "Evan Luis Tanjung", + "id": "e8d69460-4eb9-48c7-a921-4738ad7c8dc9" + }, + { + "email": "ikhwannurrizkif@gmail.com", + "name": "", + "id": "e913c217-2dde-4498-909c-4b2d5afd89d1" + }, + { + "email": "ryandraa27@gmail.com", + "name": "", + "id": "e98fbabe-4120-4d16-b11f-e447467c8ef9" + }, + { + "email": "mtaufikska@gmail.com", + "name": "", + "id": "e99519f0-630b-4293-8487-a17d667fa708" + }, + { + "email": "tudebaliirl@gmail.com", + "name": "TudeStillLearning!", + "id": "e99abe65-5ce7-49c5-930b-b7e456d55661" + }, + { + "email": "adam.daniamm@gmail.com", + "name": "", + "id": "e9b65cdd-9c7c-471d-97ac-b02f0434e87f" + }, + { + "email": "boboi0704@gmail.com", + "name": "", + "id": "e9bc3d6c-67af-4687-8b3b-a122a93710ef" + }, + { + "email": "nathantanusubroto15@gmail.com", + "name": "", + "id": "e9ef0f76-533a-4016-ab14-420934da3fe3" + }, + { + "email": "mikmself@gmail.com", + "name": "Muhamad Irga Khoirul Mahfis", + "id": "eab56176-5f01-4ff2-8dca-51bebf7771fc" + }, + { + "email": "yuenvengozatheowonata@gmail.com", + "name": "Yuenvengoza Theowonata", + "id": "eac6a2e3-017f-4c92-ae73-38bc43520640" + }, + { + "email": "dexangga06@gmail.com", + "name": "", + "id": "eb0176ef-9cd5-474d-9bc2-115afb6eb831" + }, + { + "email": "reeimu28@gmail.com", + "name": "Moruten", + "id": "eb2c7101-f5d4-453c-80e8-1f3f77d350dc" + }, + { + "email": "henryfaaa@gmail.com", + "name": "", + "id": "eb350f16-56c0-4e05-a483-7300ab363c6b" + }, + { + "email": "kelvinlihandy2005@gmail.com", + "name": "Kelvin Lihandy", + "id": "ec3d9492-cc18-497e-b63a-a1c06281bcaa" + }, + { + "email": "alyssashane2607@gmail.com", + "name": "", + "id": "ece0ce22-4193-46f0-af02-d0153e896ee4" + }, + { + "email": "yandrajafarsidiq8@gmail.com", + "name": "Yandra Jafar Sidiq", + "id": "ee2aff01-ddc0-40fd-afda-db8e0c0e9556" + }, + { + "email": "rikogans754@gmail.com", + "name": "", + "id": "eef4fdd0-0198-4749-b099-0d558ab2ce22" + }, + { + "email": "arkandi.2020@gmail.com", + "name": "Muhammad Arkandi Syahputra Santosa", + "id": "ef13c12f-2cca-4ddf-9dad-3d387a89bbf8" + }, + { + "email": "alfaris.mgk@gmail.com", + "name": "", + "id": "f01ba8b4-7ee2-4561-bc22-73bbfb712ea0" + }, + { + "email": "bilorpanas@gmail.com", + "name": "", + "id": "f05211c3-aa26-473b-a6a4-225424349e81" + }, + { + "email": "limakaki881@gmail.com", + "name": "yth.mas.kanjeng.gus.mas.lui.s.pd.kom.h.i.alm.h.lc.hc.pc.amd.intel.ndx.aka.", + "id": "f0cace35-b865-4475-9ddb-5fce24f655f2" + }, + { + "email": "arvanardana1@gmail.com", + "name": "Arvan Ardana", + "id": "f1df8edd-2549-4c98-be46-01584aa134eb" + }, + { + "email": "farreldiego29@gmail.com", + "name": "Farrel Diego", + "id": "f26c75f5-6ae7-446b-aa47-695ba13e7c7f" + }, + { + "email": "wizzkingchannel@gmail.com", + "name": "HabiebAnugrah", + "id": "f34efb80-ad1d-434f-a319-e1d54973ff12" + }, + { + "email": "adityakurniasaputra903@gmail.com", + "name": "Kurnias", + "id": "f377d789-ecf1-4a12-b72b-a8ffe30cc123" + }, + { + "email": "dav1nalifianda@gmail.com", + "name": "Davin Alifianda Adytia", + "id": "f3a25278-ec1d-496a-a89c-030c5c521111" + }, + { + "email": "rifqinanda60@gmail.com", + "name": "", + "id": "f3fef42a-9d51-40d6-b6e7-59f25bf068c8" + }, + { + "email": "notmadz132@gmail.com", + "name": "Mu'adz Abdulloh", + "id": "f40b14d5-0cc4-4605-9893-8f27dd34de71" + }, + { + "email": "qodria589@gmail.com", + "name": "", + "id": "f44ce041-e64c-4cbd-a104-83964aa37ccb" + }, + { + "email": "fahrezaxgamer@gmail.com", + "name": "Fahreza Pratama Hidayat", + "id": "f47cacb7-e099-4816-96c9-77f858414235" + }, + { + "email": "dyas@live.com", + "name": "Drestanto Muhammad Dyasputro", + "id": "f57ac77c-7ea9-4b92-aeb5-a7131a5052dc" + }, + { + "email": "ahmadgozali4040@gmail.com", + "name": "Ahmad Ghozali", + "id": "f6938963-132b-4471-90c1-2a252923b89f" + }, + { + "email": "jony.huang.me@gmail.com", + "name": "Jony Wijaya", + "id": "f786208b-28cc-4484-935f-b88f2f75d6d0" + }, + { + "email": "afrizaahmad18@gmail.com", + "name": "normies", + "id": "f7b6ebf3-3bce-46df-b18f-22763e552e6e" + }, + { + "email": "satyabr147@gmail.com", + "name": "", + "id": "f833772b-a037-48ae-90eb-c3b02a06a3b9" + }, + { + "email": "gmrikza05@gmail.com", + "name": "", + "id": "f83bbabf-f6e8-4023-9626-2a97a0c4c994" + }, + { + "email": "andikadibya92@gmail.com", + "name": "Andika Dibya Azzumardi", + "id": "f8cc3af4-3a3a-4a3d-8314-972725366ffb" + }, + { + "email": "rizkynursanto48@gmail.com", + "name": "Rizky Adi N.", + "id": "fa57208f-b1a7-4766-9067-d4531833f4b9" + }, + { + "email": "muh.indaarr@gmail.com", + "name": "Muhammad Indar", + "id": "fa7f0fc6-7449-42ac-a80f-560960345ac4" + }, + { + "email": "laluarya633@gmail.com", + "name": "", + "id": "fae5c5a9-6a26-48d6-b04d-68ebf4d81e7b" + }, + { + "email": "muhammadfadlanrais@gmail.com", + "name": "", + "id": "fbc4c505-01ef-40b2-a257-c2430fe1bdc5" + }, + { + "email": "rifkybujanabisri@gmail.com", + "name": "Rifky Bujana Bisri", + "id": "fc00d1bf-65da-431b-9994-52a3cfc88273" + }, + { + "email": "alazmimuhammadhabib@gmail.com", + "name": "Izumi", + "id": "fc05d2d3-0a55-4407-b20e-99d7bf24a3ec" + }, + { + "email": "scamgarapan@gmail.com", + "name": "", + "id": "fc22e953-b532-48b2-be6a-0fbc3b3774fb" + }, + { + "email": "fajaralfrzi@gmail.com", + "name": "", + "id": "fc701b59-0510-44f3-a85e-0cd22e9f777f" + }, + { + "email": "imanwealth00@gmail.com", + "name": "WebDevShoul", + "id": "fcad381c-ab34-4f62-b6f7-4569c24625f3" + }, + { + "email": "muhammadalifaditya92@gmail.com", + "name": "Alif Aditya", + "id": "fea8d6e4-a831-43a9-b98c-6a29c20dab53" + }, + { + "email": "udinhilif@gmail.com", + "name": "Rio Fernanda", + "id": "fef16ed6-438c-44c0-9070-66d3f602beae" + } +] \ No newline at end of file diff --git a/docs/user_existing_web.json b/docs/user_existing_web.json new file mode 100644 index 0000000..7f587eb --- /dev/null +++ b/docs/user_existing_web.json @@ -0,0 +1,19572 @@ +[ + { + "idx": 0, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0081ce77-2dd2-469c-8759-8d1259b6206c", + "aud": "authenticated", + "role": "authenticated", + "email": "rrrijal24@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:55:54.160129+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:55:56.575335+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"91017179\", \"name\": \"Rijal\", \"email\": \"rrrijal24@gmail.com\", \"full_name\": \"Rijal\", \"user_name\": \"Rnov24\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/91017179?v=4\", \"provider_id\": \"91017179\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Rnov24\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:55:54.152044+00", + "updated_at": "2025-11-24 02:51:34.017181+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:55:54.160129+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 1, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0176361f-e403-4aeb-a683-8aa58d1e51a4", + "aud": "authenticated", + "role": "authenticated", + "email": "zulhamrianto@gmail.com", + "encrypted_password": "$2a$10$.NtI7oIaalmA1gED02nrH.tx3D/lRl4s3SP8CxNLP3GMf1A5sK4NW", + "email_confirmed_at": "2025-11-23 14:57:48.66608+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:55:30.566284+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:31:45.545373+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"0176361f-e403-4aeb-a683-8aa58d1e51a4\", \"email\": \"zulhamrianto@gmail.com\", \"username\": \"ridhoarisaputro\", \"display_name\": \"Ridho Ari Saputro\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:55:30.559668+00", + "updated_at": "2025-11-23 15:31:45.547368+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:57:48.66608+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 2, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "017917c0-7393-4620-9d17-bc8467f9c521", + "aud": "authenticated", + "role": "authenticated", + "email": "akbarkurniawan790@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:48:13.389603+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:48:14.658807+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"100073066\", \"name\": \"Akbar Kurniawan\", \"email\": \"akbarkurniawan790@gmail.com\", \"full_name\": \"Akbar Kurniawan\", \"user_name\": \"akbar-kurnia1\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/100073066?v=4\", \"provider_id\": \"100073066\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"akbar-kurnia1\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:48:13.384435+00", + "updated_at": "2025-11-23 13:48:14.661571+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:48:13.389603+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 3, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0293026a-dfbe-4380-89fa-e2d5729a5cea", + "aud": "authenticated", + "role": "authenticated", + "email": "auliarestyazizah@gmail.com", + "encrypted_password": "$2a$10$VuqYq5nZU8OB74uZwpIY1e5Ohy5sQ9sYkR3p7P4avX/eY/WZkaTbq", + "email_confirmed_at": "2025-11-24 04:22:25.272224+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:21:29.833971+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:22:31.339867+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"0293026a-dfbe-4380-89fa-e2d5729a5cea\", \"email\": \"auliarestyazizah@gmail.com\", \"username\": \"auliaresty\", \"display_name\": \"resty\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:21:29.826802+00", + "updated_at": "2025-11-24 05:36:37.945659+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:22:25.272224+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 4, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0308f526-0dfe-4509-bee8-4aa217ec0a12", + "aud": "authenticated", + "role": "authenticated", + "email": "alhadad.xyz@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:54:56.421376+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:11:03.482323+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"84913031\", \"name\": \"alhadad\", \"email\": \"alhadad.xyz@gmail.com\", \"full_name\": \"alhadad\", \"user_name\": \"alhadad-xyz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/84913031?v=4\", \"provider_id\": \"84913031\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"alhadad-xyz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:54:56.409805+00", + "updated_at": "2025-11-24 14:10:39.807868+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:54:56.421376+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 5, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "032c630c-8a20-40ec-b191-ba8e009ab538", + "aud": "authenticated", + "role": "authenticated", + "email": "radithamzah12@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 15:32:46.004155+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 15:32:47.124548+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"145201721\", \"name\": \"dorrit\", \"email\": \"radithamzah12@gmail.com\", \"full_name\": \"dorrit\", \"user_name\": \"dorrit\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/145201721?v=4\", \"provider_id\": \"145201721\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"dorrit\"}", + "is_super_admin": null, + "created_at": "2025-11-24 15:32:45.997949+00", + "updated_at": "2025-11-24 15:32:47.126429+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 15:32:46.004155+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 6, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0331921a-4009-4204-86af-5eb90d6773cf", + "aud": "authenticated", + "role": "authenticated", + "email": "pamungkas.ajiseno@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:28:28.650871+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:28:29.674121+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"76572178\", \"name\": \"Senoaji Pamungkas\", \"email\": \"pamungkas.ajiseno@gmail.com\", \"full_name\": \"Senoaji Pamungkas\", \"user_name\": \"senoo12\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/76572178?v=4\", \"provider_id\": \"76572178\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"senoo12\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:28:28.638829+00", + "updated_at": "2025-11-24 11:29:57.983837+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:28:28.650871+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 7, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "05004e6b-9d5c-4a14-af97-496bcd55878b", + "aud": "authenticated", + "role": "authenticated", + "email": "gamingarisky@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:38:52.875401+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:38:54.121599+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"89591822\", \"email\": \"gamingarisky@gmail.com\", \"user_name\": \"WizzKi\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/89591822?v=4\", \"provider_id\": \"89591822\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"WizzKi\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:38:52.870222+00", + "updated_at": "2025-11-23 14:38:54.123545+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:38:52.875401+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 8, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "058da640-ac05-498b-8618-f2c5a4455b90", + "aud": "authenticated", + "role": "authenticated", + "email": "bagoesrex@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 17:15:46.019242+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:36:33.585896+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"117269656\", \"name\": \"Bagus\", \"email\": \"bagoesrex@gmail.com\", \"full_name\": \"Bagus\", \"user_name\": \"bagoesrex\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/117269656?v=4\", \"provider_id\": \"117269656\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"bagoesrex\"}", + "is_super_admin": null, + "created_at": "2025-11-23 17:15:46.011156+00", + "updated_at": "2025-11-24 18:11:20.867949+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 17:15:46.019242+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 9, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "05d98092-8528-4edf-8b23-9134d67f628b", + "aud": "authenticated", + "role": "authenticated", + "email": "rizkyseptian401@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:54:38.159371+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:54:43.216235+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"116299939\", \"name\": \"Moc Rizky Septian\", \"email\": \"rizkyseptian401@gmail.com\", \"full_name\": \"Moc Rizky Septian\", \"user_name\": \"mochammadrs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/116299939?v=4\", \"provider_id\": \"116299939\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mochammadrs\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:54:38.133874+00", + "updated_at": "2025-11-24 07:54:43.222362+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:54:38.159371+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 10, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "06f7158e-2218-4b61-8129-899bdaeb1eab", + "aud": "authenticated", + "role": "authenticated", + "email": "excellchriatian12@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:06:03.846802+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:06:05.534974+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"178773490\", \"name\": \"Excell Christian\", \"email\": \"excellchriatian12@gmail.com\", \"full_name\": \"Excell Christian\", \"user_name\": \"ExcWasHere\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/178773490?v=4\", \"provider_id\": \"178773490\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ExcWasHere\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:06:03.83921+00", + "updated_at": "2025-11-24 07:06:05.536837+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:06:03.846802+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 11, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "07138a28-5e15-4c08-9325-0b17061d913f", + "aud": "authenticated", + "role": "authenticated", + "email": "sofyanekafebriyanto@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:01:57.590868+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:01:59.053703+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"168646775\", \"email\": \"sofyanekafebriyanto@gmail.com\", \"user_name\": \"SofyanEkaFebriyanto\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/168646775?v=4\", \"provider_id\": \"168646775\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"SofyanEkaFebriyanto\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:01:57.58419+00", + "updated_at": "2025-11-24 01:01:59.055494+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:01:57.590868+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 12, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "07203a89-c58b-4df2-aeba-54b4977c8fc6", + "aud": "authenticated", + "role": "authenticated", + "email": "baraskyke7@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:53:36.935649+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:53:37.824947+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"182578755\", \"name\": \"Barasky\", \"email\": \"baraskyke7@gmail.com\", \"full_name\": \"Barasky\", \"user_name\": \"Baraskyyy\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/182578755?v=4\", \"provider_id\": \"182578755\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Baraskyyy\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:53:36.92405+00", + "updated_at": "2025-11-24 02:53:37.831038+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:53:36.935649+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 13, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "073af6af-33aa-4067-820c-2213df0843b0", + "aud": "authenticated", + "role": "authenticated", + "email": "cukd3h.hynix@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:57:51.154168+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:57:52.870259+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"226751690\", \"email\": \"cukd3h.hynix@gmail.com\", \"user_name\": \"hynix-ship-it\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/226751690?v=4\", \"provider_id\": \"226751690\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"hynix-ship-it\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:57:51.139158+00", + "updated_at": "2025-11-24 07:57:52.875151+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:57:51.154168+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 14, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "073bb0a3-69b5-4b4d-8d47-e30b38690ef5", + "aud": "authenticated", + "role": "authenticated", + "email": "tsqf.h29@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:46:51.95251+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:16:20.975105+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"142965056\", \"name\": \"Muh Tsaqif Hafidz\", \"email\": \"tsqf.h29@gmail.com\", \"full_name\": \"Muh Tsaqif Hafidz\", \"user_name\": \"Vocxss\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/142965056?v=4\", \"provider_id\": \"142965056\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Vocxss\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:46:51.945692+00", + "updated_at": "2025-11-23 15:16:20.977768+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:46:51.95251+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 15, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "078e1f86-6ca1-4fc2-ab9d-a600a6c5adf0", + "aud": "authenticated", + "role": "authenticated", + "email": "azranmu@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:03:21.835112+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:06:29.70658+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"62879334\", \"name\": \"M ASRAN\", \"email\": \"azranmu@gmail.com\", \"full_name\": \"M ASRAN\", \"user_name\": \"theazran\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/62879334?v=4\", \"provider_id\": \"62879334\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"theazran\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:03:21.828317+00", + "updated_at": "2025-11-23 23:33:11.467498+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:03:21.835112+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 16, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "08b7eb15-dd74-4704-b8ec-d4e7dbc37c6e", + "aud": "authenticated", + "role": "authenticated", + "email": "gdsudiartika@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:57:31.905498+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:57:32.698177+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"163659290\", \"name\": \"Diar Sudiar\", \"email\": \"gdsudiartika@gmail.com\", \"full_name\": \"Diar Sudiar\", \"user_name\": \"DiarCode11\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/163659290?v=4\", \"provider_id\": \"163659290\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"DiarCode11\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:57:31.899412+00", + "updated_at": "2025-11-24 05:33:32.378964+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:57:31.905498+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 17, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "095a9662-4d57-4c76-ae28-8f3685a01d34", + "aud": "authenticated", + "role": "authenticated", + "email": "alfiansa@proton.me", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:44:49.658439+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:41:55.087975+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:44:51.341797+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"98071117\", \"name\": \"Aditia Akbar Putra A.\", \"email\": \"alfiansa@proton.me\", \"full_name\": \"Aditia Akbar Putra A.\", \"user_name\": \"fiandev\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/98071117?v=4\", \"provider_id\": \"98071117\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fiandev\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:41:55.083514+00", + "updated_at": "2025-11-23 14:53:41.155836+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:44:49.658439+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 18, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "09ab46a0-1394-4e41-9938-8f3df7f8bf99", + "aud": "authenticated", + "role": "authenticated", + "email": "ichaaulia720@gmail.com", + "encrypted_password": "$2a$10$fXIQlSaGpE0Zxu6uNj78AeFpXf7sys.4.tLI0RE4uJqL4.fzNLxRu", + "email_confirmed_at": "2025-11-23 15:01:53.315793+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:01:36.667282+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:01:57.682198+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"09ab46a0-1394-4e41-9938-8f3df7f8bf99\", \"email\": \"ichaaulia720@gmail.com\", \"username\": \"ichaaulia\", \"display_name\": \"Icha Aulia Putri Ambarwati\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:01:36.660428+00", + "updated_at": "2025-11-23 15:01:57.684079+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:01:53.315793+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 19, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "09cacf8e-467d-4885-a792-11287b68d626", + "aud": "authenticated", + "role": "authenticated", + "email": "naziq02@gmail.com", + "encrypted_password": "$2a$10$YqxJuxk.JqHle5WynMrLB.BWcLf33dX7AzUVLx9.gykHySCc19Qyi", + "email_confirmed_at": "2025-11-23 13:28:16.878594+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:27:50.26066+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:28:27.734582+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"09cacf8e-467d-4885-a792-11287b68d626\", \"email\": \"naziq02@gmail.com\", \"username\": \"naziq\", \"display_name\": \"naziq\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:27:50.255256+00", + "updated_at": "2025-11-23 16:45:26.700031+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:28:16.878594+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 20, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "09dd11d7-4dae-4273-ba66-e313d82c7d52", + "aud": "authenticated", + "role": "authenticated", + "email": "wahyuskull22@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 00:47:15.840579+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:00:06.629955+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"27491616\", \"name\": \"Wahyu SA\", \"email\": \"wahyuskull22@gmail.com\", \"full_name\": \"Wahyu SA\", \"user_name\": \"wahyusa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/27491616?v=4\", \"provider_id\": \"27491616\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"wahyusa\"}", + "is_super_admin": null, + "created_at": "2025-11-24 00:47:15.815134+00", + "updated_at": "2025-11-24 01:00:06.631929+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:47:15.840579+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 21, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0a28758d-fbc3-4979-93ae-33011b3a9691", + "aud": "authenticated", + "role": "authenticated", + "email": "sulthanzain28@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:02:20.204773+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:02:21.310072+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"66422207\", \"name\": \"Sulthan .Y\", \"email\": \"sulthanzain28@gmail.com\", \"full_name\": \"Sulthan .Y\", \"user_name\": \"SulthanYasinZain\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/66422207?v=4\", \"provider_id\": \"66422207\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"SulthanYasinZain\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:02:20.183246+00", + "updated_at": "2025-11-24 11:17:32.967436+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:02:20.204773+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 22, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0a48d044-6e36-46b6-bd4e-bbf7d3f9519e", + "aud": "authenticated", + "role": "authenticated", + "email": "ivan04.android@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 14:34:52.681769+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:34:53.364038+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"68177813\", \"email\": \"ivan04.android@gmail.com\", \"user_name\": \"mcpe500\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/68177813?v=4\", \"provider_id\": \"68177813\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mcpe500\"}", + "is_super_admin": null, + "created_at": "2025-11-24 14:34:52.670239+00", + "updated_at": "2025-11-24 15:38:09.425159+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 14:34:52.681769+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 23, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0ab605f9-d525-4e1b-b1ca-7b21da065aff", + "aud": "authenticated", + "role": "authenticated", + "email": "muklasputra222@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:47:58.734453+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:48:00.046232+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"116421423\", \"name\": \"Muklas Adi Putra\", \"email\": \"muklasputra222@gmail.com\", \"full_name\": \"Muklas Adi Putra\", \"user_name\": \"PatrickkkKing\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/116421423?v=4\", \"provider_id\": \"116421423\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"PatrickkkKing\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:47:58.726796+00", + "updated_at": "2025-11-24 17:24:58.262667+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:47:58.734453+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 24, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0b380e5f-26dc-41f0-914d-731d7ca00603", + "aud": "authenticated", + "role": "authenticated", + "email": "rojafadilah0203@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:59:09.627441+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:59:10.362229+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"218681819\", \"name\": \"Roja Fadilah\", \"email\": \"rojafadilah0203@gmail.com\", \"full_name\": \"Roja Fadilah\", \"user_name\": \"Vyodour\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/218681819?v=4\", \"provider_id\": \"218681819\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Vyodour\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:59:09.6204+00", + "updated_at": "2025-11-24 13:49:34.612521+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:59:09.627441+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 25, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0b55c37c-48ce-4721-a7bb-52d9913dfcee", + "aud": "authenticated", + "role": "authenticated", + "email": "akmalkeisin@gmail.com", + "encrypted_password": "$2a$10$Q8b1eBbOet7kDwQs6GjAuePnmdK6BiMhz7y4571dV3ip48UEyGyh.", + "email_confirmed_at": "2025-11-24 01:10:59.662729+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 01:10:45.601818+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:27:46.082189+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"0b55c37c-48ce-4721-a7bb-52d9913dfcee\", \"email\": \"akmalkeisin@gmail.com\", \"username\": \"akmalkeisin\", \"display_name\": \"Akmal Keisin\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 01:10:45.593573+00", + "updated_at": "2025-11-24 03:50:44.359804+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:10:59.662729+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 26, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0c1ddd78-5f93-4272-953b-4640cc769ab9", + "aud": "authenticated", + "role": "authenticated", + "email": "bimasaktiramdani01@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 16:51:54.431039+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:51:56.979575+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"92561136\", \"email\": \"bimasaktiramdani01@gmail.com\", \"user_name\": \"BimaSR\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/92561136?v=4\", \"provider_id\": \"92561136\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"BimaSR\"}", + "is_super_admin": null, + "created_at": "2025-11-24 16:51:54.416065+00", + "updated_at": "2025-11-24 16:51:56.983216+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 16:51:54.431039+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 27, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0cb2e0f9-6afe-458b-afc9-3170bcc18fa4", + "aud": "authenticated", + "role": "authenticated", + "email": "gajipgaming@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 18:13:25.890758+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 18:13:26.792924+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"119992819\", \"name\": \"Galih Aji Pangestu\", \"email\": \"gajipgaming@gmail.com\", \"full_name\": \"Galih Aji Pangestu\", \"user_name\": \"galiihajiip\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/119992819?v=4\", \"provider_id\": \"119992819\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"galiihajiip\"}", + "is_super_admin": null, + "created_at": "2025-11-23 18:13:25.881419+00", + "updated_at": "2025-11-24 01:46:11.407015+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 18:13:25.890758+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 28, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0d4f3960-509d-4ba4-8d03-5fc1c38a4071", + "aud": "authenticated", + "role": "authenticated", + "email": "pascalsanjaya34@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:30:36.704581+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:30:37.649129+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"164880987\", \"name\": \"Pascal\", \"email\": \"pascalsanjaya34@gmail.com\", \"full_name\": \"Pascal\", \"user_name\": \"Equorax\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/164880987?v=4\", \"provider_id\": \"164880987\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Equorax\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:30:36.697038+00", + "updated_at": "2025-11-24 12:30:37.656876+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:30:36.704581+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 29, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0e87a0f3-5a96-4b87-8e04-e180ed2731ca", + "aud": "authenticated", + "role": "authenticated", + "email": "hanifdwyputrasembiring@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:24:28.38923+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:24:31.312161+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"47862061\", \"name\": \"Hanif Dwy Putra S\", \"email\": \"hanifdwyputrasembiring@gmail.com\", \"full_name\": \"Hanif Dwy Putra S\", \"user_name\": \"hansputera\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/47862061?v=4\", \"provider_id\": \"47862061\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"hansputera\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:24:28.375179+00", + "updated_at": "2025-11-24 07:24:31.322425+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:24:28.38923+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 30, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0e9fcc3c-4a3f-43c9-bf4f-e4e4c342f7a0", + "aud": "authenticated", + "role": "authenticated", + "email": "afreezap20@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:16:11.31218+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:16:12.240511+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"95036695\", \"email\": \"afreezap20@gmail.com\", \"user_name\": \"Afta20\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/95036695?v=4\", \"provider_id\": \"95036695\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Afta20\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:16:11.305873+00", + "updated_at": "2025-11-23 13:16:12.242362+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:16:11.31218+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 31, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0eb6f8b2-f10f-4fa7-bf66-a43ef14a8f63", + "aud": "authenticated", + "role": "authenticated", + "email": "profyonz@gmail.com", + "encrypted_password": "$2a$10$IMhmsZXKSkPFFFCyI91EEeXPEnZPK.l0avf8XIZ30V1ku6AygxGp6", + "email_confirmed_at": "2025-11-23 15:57:03.531489+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:56:30.04319+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:57:03.536839+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"0eb6f8b2-f10f-4fa7-bf66-a43ef14a8f63\", \"email\": \"profyonz@gmail.com\", \"username\": \"kingyonz\", \"display_name\": \"Yonzzy\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:56:30.032248+00", + "updated_at": "2025-11-23 15:57:03.541479+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:57:03.531489+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 32, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0ec815c3-a256-4583-909d-b02655d7d09a", + "aud": "authenticated", + "role": "authenticated", + "email": "kesavadananjaya@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-18 09:30:56.00709+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-18 09:30:57.295176+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"103091530\", \"email\": \"kesavadananjaya@gmail.com\", \"user_name\": \"kesavamas\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/103091530?v=4\", \"provider_id\": \"103091530\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"kesavamas\"}", + "is_super_admin": null, + "created_at": "2025-11-18 09:30:55.927508+00", + "updated_at": "2025-11-18 09:30:57.326291+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-18 09:30:56.00709+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 33, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0f0e2cb8-2c21-417a-a577-f5d0662a2efa", + "aud": "authenticated", + "role": "authenticated", + "email": "mdwikurniawan976@gmail.com", + "encrypted_password": "$2a$10$rVlOmPVVifLGfps.d.Hee.rAHFaFmtA8dvCZbMR31ILG.FaYxwZqq", + "email_confirmed_at": "2025-11-24 06:25:30.252493+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 06:25:05.165239+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:25:37.040198+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"0f0e2cb8-2c21-417a-a577-f5d0662a2efa\", \"email\": \"mdwikurniawan976@gmail.com\", \"username\": \"mdwkrnwn\", \"display_name\": \"dwi\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 06:25:05.15232+00", + "updated_at": "2025-11-24 12:42:54.029447+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:25:30.252493+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 34, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0fa03bff-4be2-4c13-b687-688191c02955", + "aud": "authenticated", + "role": "authenticated", + "email": "rickyrahmad2001@gmail.com", + "encrypted_password": "$2a$10$6QYpd9IWXg29pzDeibY0TOUY1mEWmryTSZZHBif4g3FLNtL1lDuaq", + "email_confirmed_at": "2025-11-24 00:51:46.916566+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 00:51:16.754698+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 00:51:55.881995+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"0fa03bff-4be2-4c13-b687-688191c02955\", \"email\": \"rickyrahmad2001@gmail.com\", \"username\": \"ricky\", \"display_name\": \"Ricky\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 00:51:16.608169+00", + "updated_at": "2025-11-24 00:51:55.8873+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:51:46.916566+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 35, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0fc6770d-fac7-4118-8796-6cae1b18f880", + "aud": "authenticated", + "role": "authenticated", + "email": "dimasmaulanaichsan@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 17:34:39.511713+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 17:34:40.254815+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"35564104\", \"name\": \"Dimas Maulana Ichsan\", \"email\": \"dimasmaulanaichsan@gmail.com\", \"full_name\": \"Dimas Maulana Ichsan\", \"user_name\": \"dmxsan\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/35564104?v=4\", \"provider_id\": \"35564104\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"dmxsan\"}", + "is_super_admin": null, + "created_at": "2025-11-23 17:34:39.502655+00", + "updated_at": "2025-11-23 17:34:40.25743+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 17:34:39.511713+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 36, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "0fc99cb4-4495-405e-8b2f-3728404d7615", + "aud": "authenticated", + "role": "authenticated", + "email": "rikiulir@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 14:06:46.092845+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:06:48.04985+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"151761982\", \"name\": \"Riki Ulir Niam\", \"email\": \"rikiulir@gmail.com\", \"full_name\": \"Riki Ulir Niam\", \"user_name\": \"rikiulirniam\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/151761982?v=4\", \"provider_id\": \"151761982\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rikiulirniam\"}", + "is_super_admin": null, + "created_at": "2025-11-24 14:06:46.080187+00", + "updated_at": "2025-11-24 15:58:45.661799+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 14:06:46.092845+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 37, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "100b63a9-7487-4553-b45d-afb2201e4492", + "aud": "authenticated", + "role": "authenticated", + "email": "atmasusanto08@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:38:06.185805+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:38:07.199128+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"78201403\", \"email\": \"atmasusanto08@gmail.com\", \"user_name\": \"Atma1\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/78201403?v=4\", \"provider_id\": \"78201403\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Atma1\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:38:06.179408+00", + "updated_at": "2025-11-24 09:17:22.984136+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:38:06.185805+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 38, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "114bebc7-2422-4c0a-9898-521f94739e7f", + "aud": "authenticated", + "role": "authenticated", + "email": "alvarelkevin12@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:21:52.472016+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 18:05:43.202396+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"50695207\", \"name\": \"Muhammad Kevin Alvarel\", \"email\": \"alvarelkevin12@gmail.com\", \"full_name\": \"Muhammad Kevin Alvarel\", \"user_name\": \"kevinalvarel\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/50695207?v=4\", \"provider_id\": \"50695207\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"kevinalvarel\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:21:52.465836+00", + "updated_at": "2025-11-24 18:05:43.211652+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:21:52.472016+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 39, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "118b7324-bfc1-45f7-9282-d0d7fee3510f", + "aud": "authenticated", + "role": "authenticated", + "email": "rayid1805@gmail.com", + "encrypted_password": "$2a$10$39/zTre10VHLJ7fHdAsF0eEcW0URTS3c/Sh/QFUrgeHVQ5Sa3CRFW", + "email_confirmed_at": "2025-11-23 13:36:19.608689+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:36:00.693335+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:36:53.795023+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"118b7324-bfc1-45f7-9282-d0d7fee3510f\", \"email\": \"rayid1805@gmail.com\", \"username\": \"rayghj\", \"display_name\": \"Rayghj\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:36:00.657205+00", + "updated_at": "2025-11-23 13:36:53.796864+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:36:19.608689+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 40, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "11dc3951-1a07-4937-bd75-2c29d2770c13", + "aud": "authenticated", + "role": "authenticated", + "email": "sjr16173@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:04:28.992878+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:17:27.885509+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"87625815\", \"name\": \"M. Salman Alfarisi\", \"email\": \"sjr16173@gmail.com\", \"full_name\": \"M. Salman Alfarisi\", \"user_name\": \"manndev-af\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/87625815?v=4\", \"provider_id\": \"87625815\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"manndev-af\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:04:28.985891+00", + "updated_at": "2025-11-23 14:17:27.887223+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:04:28.992878+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 41, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "134cd84e-4d79-474a-8ccc-09d728ad3f61", + "aud": "authenticated", + "role": "authenticated", + "email": "mhmmdarifrs@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 23:47:02.011397+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 23:47:02.89268+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"111945507\", \"name\": \"Muhammad Arif Rahmad\", \"email\": \"mhmmdarifrs@gmail.com\", \"full_name\": \"Muhammad Arif Rahmad\", \"user_name\": \"mhdarif09\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/111945507?v=4\", \"provider_id\": \"111945507\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mhdarif09\"}", + "is_super_admin": null, + "created_at": "2025-11-23 23:47:01.980306+00", + "updated_at": "2025-11-23 23:47:02.900775+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 23:47:02.011397+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 42, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "15154e34-3c02-426a-b02e-003278334a29", + "aud": "authenticated", + "role": "authenticated", + "email": "2310512054@mahasiswa.upnvj.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:05:12.192847+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:05:13.352649+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"144443677\", \"name\": \"Rafki Aulia Hazli \", \"email\": \"2310512054@mahasiswa.upnvj.ac.id\", \"full_name\": \"Rafki Aulia Hazli \", \"user_name\": \"rafkiaulia\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/144443677?v=4\", \"provider_id\": \"144443677\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rafkiaulia\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:05:12.185672+00", + "updated_at": "2025-11-24 09:55:22.002279+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:05:12.192847+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 43, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "151fa86a-5cec-4758-9824-a9d2ecd5385c", + "aud": "authenticated", + "role": "authenticated", + "email": "fathamarizkinur@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:47:45.76422+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:47:48.904352+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"202935024\", \"email\": \"fathamarizkinur@gmail.com\", \"user_name\": \"MasThom99\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/202935024?v=4\", \"provider_id\": \"202935024\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MasThom99\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:47:45.759177+00", + "updated_at": "2025-11-24 07:55:09.2289+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:47:45.76422+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 44, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1552a593-f8e3-4c80-833b-4c5017dea18f", + "aud": "authenticated", + "role": "authenticated", + "email": "risyadraflan14@gmail.com", + "encrypted_password": "$2a$10$VxBasaJxb/GXqL/7xD6cSOfQ..Sdpmyuz85l4rina6KDlZxWqDRz6", + "email_confirmed_at": "2025-11-23 13:18:21.734532+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:18:02.033139+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:34:15.875822+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"1552a593-f8e3-4c80-833b-4c5017dea18f\", \"email\": \"risyadraflan14@gmail.com\", \"username\": \"risyadraflan\", \"display_name\": \"Risyad Raflan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:18:02.027771+00", + "updated_at": "2025-11-24 04:31:36.379615+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:18:21.734532+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 45, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "16a7eda3-4296-4754-b88e-dcf4cf61a0eb", + "aud": "authenticated", + "role": "authenticated", + "email": "fauziferdiansyahindo@gmail.com", + "encrypted_password": "$2a$10$bbqcPKvdSmA7qx3Ofc0ugu7JjWZ9FWSKMrr5Co6HML4bN5qYSf8x6", + "email_confirmed_at": "2025-11-23 13:29:09.949219+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:28:52.838318+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:29:22.675098+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"16a7eda3-4296-4754-b88e-dcf4cf61a0eb\", \"email\": \"fauziferdiansyahindo@gmail.com\", \"username\": \"fauziferdiansyah\", \"display_name\": \"Fauzi Ferdiansyah\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:28:52.83377+00", + "updated_at": "2025-11-23 15:16:05.156321+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:29:09.949219+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 46, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "16b7a5ea-e664-4de5-86f1-578b5f3cd28c", + "aud": "authenticated", + "role": "authenticated", + "email": "amuhajir3126@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:39:56.817645+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:39:58.141572+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"157820059\", \"name\": \"MamadNewbie\", \"email\": \"amuhajir3126@gmail.com\", \"full_name\": \"MamadNewbie\", \"user_name\": \"mamadwibu\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/157820059?v=4\", \"provider_id\": \"157820059\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mamadwibu\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:39:56.812222+00", + "updated_at": "2025-11-23 16:39:58.143254+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:39:56.817645+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 47, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1730c82d-369d-486d-b7cf-887be5383f8e", + "aud": "authenticated", + "role": "authenticated", + "email": "fdvkey@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:52:52.645068+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:52:53.22509+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"113902422\", \"name\": \"Bowo Pratama\", \"email\": \"fdvkey@gmail.com\", \"full_name\": \"Bowo Pratama\", \"user_name\": \"fdvky1\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/113902422?v=4\", \"provider_id\": \"113902422\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fdvky1\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:52:52.632203+00", + "updated_at": "2025-11-24 17:04:28.679597+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:52:52.645068+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 48, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "173e56ab-92cc-48dd-9b03-dc8fdca13fde", + "aud": "authenticated", + "role": "authenticated", + "email": "wahyusiakrom238@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:25:33.631953+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:25:35.18186+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"53292337\", \"name\": \"ademaswahyu\", \"email\": \"wahyusiakrom238@gmail.com\", \"full_name\": \"ademaswahyu\", \"user_name\": \"ademas-wahyu\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/53292337?v=4\", \"provider_id\": \"53292337\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ademas-wahyu\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:25:33.623998+00", + "updated_at": "2025-11-24 07:50:03.834413+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:25:33.631953+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 49, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "18405a8a-9016-4db7-97fa-26ab32735df2", + "aud": "authenticated", + "role": "authenticated", + "email": "abiyuaflah135@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:07:24.494075+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:07:26.712846+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"186538546\", \"name\": \"Abiyu Aflah\", \"email\": \"abiyuaflah135@gmail.com\", \"full_name\": \"Abiyu Aflah\", \"user_name\": \"Biyu-aja\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/186538546?v=4\", \"provider_id\": \"186538546\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Biyu-aja\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:07:24.473683+00", + "updated_at": "2025-11-24 05:07:26.717457+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:07:24.494075+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 50, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "19355ab7-f1cb-47c5-9d2d-5eeb9ee4dbff", + "aud": "authenticated", + "role": "authenticated", + "email": "feryaryahidayat@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:02:02.992396+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:02:04.081242+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"163739400\", \"name\": \"Fery\", \"email\": \"feryaryahidayat@gmail.com\", \"full_name\": \"Fery\", \"user_name\": \"Fery-Iris\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/163739400?v=4\", \"provider_id\": \"163739400\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Fery-Iris\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:02:02.982089+00", + "updated_at": "2025-11-24 14:00:22.236175+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:02:02.992396+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 51, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1973ee9d-2e18-46bc-b8df-272d61980a50", + "aud": "authenticated", + "role": "authenticated", + "email": "rokimiftah@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 22:34:15.369725+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 22:34:16.573349+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"32923249\", \"name\": \"Roki Miftah Kamaludin\", \"email\": \"rokimiftah@gmail.com\", \"full_name\": \"Roki Miftah Kamaludin\", \"user_name\": \"rokimiftah\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/32923249?v=4\", \"provider_id\": \"32923249\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rokimiftah\"}", + "is_super_admin": null, + "created_at": "2025-11-23 22:34:15.338367+00", + "updated_at": "2025-11-24 08:14:10.977177+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 22:34:15.369725+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 52, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "197d5875-dc6f-4068-844d-657db670babc", + "aud": "authenticated", + "role": "authenticated", + "email": "glen.tbjs@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:25:52.900577+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:25:56.538059+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"142556335\", \"name\": \"Jeki\", \"email\": \"glen.tbjs@gmail.com\", \"full_name\": \"Jeki\", \"user_name\": \"Glenrejeki\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/142556335?v=4\", \"provider_id\": \"142556335\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Glenrejeki\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:25:52.895114+00", + "updated_at": "2025-11-23 13:25:56.53973+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:25:52.900577+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 53, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "198b0b9f-a34d-410f-87cd-d19cfe02ff0c", + "aud": "authenticated", + "role": "authenticated", + "email": "khulafamanagement@gmail.com", + "encrypted_password": "$2a$10$ZsTZWGANSzOmvkmCDC9D9ewwKSBI9d7UgqzhbqmrTbx5alSE6EOzS", + "email_confirmed_at": "2025-11-24 03:06:27.98125+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:06:10.405516+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:06:35.322644+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"198b0b9f-a34d-410f-87cd-d19cfe02ff0c\", \"email\": \"khulafamanagement@gmail.com\", \"username\": \"khulafa09\", \"display_name\": \"khulafa\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:06:10.396134+00", + "updated_at": "2025-11-24 03:06:35.32452+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:06:27.98125+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 54, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1a79c0ce-9119-4067-9f00-c91dd01db95e", + "aud": "authenticated", + "role": "authenticated", + "email": "12350110343@students.uin-suska.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:36:04.631396+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:36:06.711597+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"175378162\", \"email\": \"12350110343@students.uin-suska.ac.id\", \"user_name\": \"Joko206\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/175378162?v=4\", \"provider_id\": \"175378162\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Joko206\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:36:04.625264+00", + "updated_at": "2025-11-23 15:36:06.713344+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:36:04.631396+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 55, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1aabe9b4-297a-4422-b01f-1b02369dc401", + "aud": "authenticated", + "role": "authenticated", + "email": "rizalalfadlil@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:23:19.748889+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:44:44.440466+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"115386426\", \"name\": \"Hafidz Rizal Al-Fadlil\", \"email\": \"rizalalfadlil@gmail.com\", \"full_name\": \"Hafidz Rizal Al-Fadlil\", \"user_name\": \"rizalalfadlil\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/115386426?v=4\", \"provider_id\": \"115386426\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rizalalfadlil\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:23:19.738883+00", + "updated_at": "2025-11-24 03:43:14.674461+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:23:19.748889+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 56, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1b473465-ea92-4b48-9c2a-43c67cf45e01", + "aud": "authenticated", + "role": "authenticated", + "email": "razinsyakib@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:39:35.777403+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:39:36.405052+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"72656623\", \"name\": \"Muhammad Razin Syakib\", \"email\": \"razinsyakib@gmail.com\", \"full_name\": \"Muhammad Razin Syakib\", \"user_name\": \"razinsyakib\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/72656623?v=4\", \"provider_id\": \"72656623\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"razinsyakib\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:39:35.770855+00", + "updated_at": "2025-11-24 07:35:39.794869+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:39:35.777403+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 57, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1b4cc185-9532-49b2-b0ac-9f03c1dcc045", + "aud": "authenticated", + "role": "authenticated", + "email": "dodysamarinda@gmail.com", + "encrypted_password": "$2a$10$jTZrzt.UnBnWUCnWQ/eDWuJAcXm4B0IRPjNX9wC2zBMFrV9eJPFEa", + "email_confirmed_at": "2025-11-24 00:41:33.636154+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 00:40:53.811052+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 00:49:00.650004+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"1b4cc185-9532-49b2-b0ac-9f03c1dcc045\", \"email\": \"dodysamarinda@gmail.com\", \"username\": \"dodyaisamarinda\", \"display_name\": \"Dody Novandi\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 00:40:53.792501+00", + "updated_at": "2025-11-24 00:49:00.653209+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:41:33.636154+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 58, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1b97626f-bb01-457b-9638-7576e5af1683", + "aud": "authenticated", + "role": "authenticated", + "email": "superaseph@gmail.com", + "encrypted_password": "$2a$10$fVKUAB3zproUdUmp4Uyy3uZRpaThySa0aA7q7rXVQ0Hl9mfLqwaWe", + "email_confirmed_at": "2025-11-18 09:39:43.865403+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-18 09:38:17.616449+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 15:31:11.168899+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"1b97626f-bb01-457b-9638-7576e5af1683\", \"email\": \"superaseph@gmail.com\", \"username\": \"mytheclipse825\", \"display_name\": \"mytheclipse\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-18 09:38:17.606833+00", + "updated_at": "2025-11-24 15:31:11.17588+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-18 09:39:43.865403+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 59, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1c88251f-951a-4470-a2eb-58118a75ee75", + "aud": "authenticated", + "role": "authenticated", + "email": "ku.anime115@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:36:38.929192+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:36:40.000243+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"147334027\", \"name\": \"Muhamad Wisnu\", \"email\": \"ku.anime115@gmail.com\", \"full_name\": \"Muhamad Wisnu\", \"user_name\": \"nu-dev2024\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/147334027?v=4\", \"provider_id\": \"147334027\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"nu-dev2024\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:36:38.922474+00", + "updated_at": "2025-11-24 11:12:09.902042+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:36:38.929192+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 60, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1c903d4e-a741-42f9-b27c-37c5d4e9a704", + "aud": "authenticated", + "role": "authenticated", + "email": "faizaalfa250@gmail.com", + "encrypted_password": "$2a$10$5DLfQFLSygjsOGd4G5JuQuvLOWG0OMbw/Fqwx6X4ZvOMheUp649a6", + "email_confirmed_at": "2025-11-24 03:43:42.211621+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:43:23.753396+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:43:57.376587+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"1c903d4e-a741-42f9-b27c-37c5d4e9a704\", \"email\": \"faizaalfa250@gmail.com\", \"username\": \"faiza\", \"display_name\": \"Faz\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:43:23.745582+00", + "updated_at": "2025-11-24 03:43:57.380547+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:43:42.211621+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 61, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1d209d21-ef69-4bab-8796-cfa4cbf1fa20", + "aud": "authenticated", + "role": "authenticated", + "email": "wandgenius6@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:45:26.910417+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:02:11.716323+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"114849379\", \"name\": \"maulana adam\", \"email\": \"wandgenius6@gmail.com\", \"full_name\": \"maulana adam\", \"user_name\": \"Eathen0\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/114849379?v=4\", \"provider_id\": \"114849379\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Eathen0\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:45:26.902483+00", + "updated_at": "2025-11-24 13:05:13.87273+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:45:26.910417+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 62, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1e0fd9f8-e7cc-4381-939d-0f1aac4a0510", + "aud": "authenticated", + "role": "authenticated", + "email": "aristiov@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 20:55:29.224809+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 20:55:30.072737+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"77972341\", \"name\": \"Aristio\", \"email\": \"aristiov@gmail.com\", \"full_name\": \"Aristio\", \"user_name\": \"luciss41\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/77972341?v=4\", \"provider_id\": \"77972341\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"luciss41\"}", + "is_super_admin": null, + "created_at": "2025-11-23 20:55:29.171537+00", + "updated_at": "2025-11-24 17:26:40.91043+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 20:55:29.224809+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 63, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1e38dac1-a94c-4ac1-9ee8-8a53629e9be4", + "aud": "authenticated", + "role": "authenticated", + "email": "adamabdillah20@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:37:53.938323+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:51:29.48205+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"50302129\", \"name\": \"Adam Abdillah\", \"email\": \"adamabdillah20@gmail.com\", \"full_name\": \"Adam Abdillah\", \"user_name\": \"abdillahadam20\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/50302129?v=4\", \"provider_id\": \"50302129\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"abdillahadam20\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:37:53.930286+00", + "updated_at": "2025-11-24 16:48:12.332076+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:37:53.938323+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 64, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "1ea5a152-5463-44b0-975a-3ed019e804b8", + "aud": "authenticated", + "role": "authenticated", + "email": "simarmatarafael11@gmail.com", + "encrypted_password": "$2a$10$mY0RAUoh7WhTlrInNiGDCebZh/EHbdODj9RObJm6fG/mR321DyuLi", + "email_confirmed_at": "2025-11-24 04:09:34.955947+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:09:03.031144+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:28:03.150919+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"1ea5a152-5463-44b0-975a-3ed019e804b8\", \"email\": \"simarmatarafael11@gmail.com\", \"username\": \"luffyxz7\", \"display_name\": \"Luffyxz7\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:09:03.025262+00", + "updated_at": "2025-11-24 14:28:03.156598+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:09:34.955947+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 65, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "21054038-79d8-49a8-8daf-ca4e780cc09a", + "aud": "authenticated", + "role": "authenticated", + "email": "kurniadikiki508@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 14:07:49.95957+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:07:50.692563+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"212745574\", \"email\": \"kurniadikiki508@gmail.com\", \"user_name\": \"kikykurniady\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/212745574?v=4\", \"provider_id\": \"212745574\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"kikykurniady\"}", + "is_super_admin": null, + "created_at": "2025-11-24 14:07:49.950191+00", + "updated_at": "2025-11-24 14:07:50.70107+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 14:07:49.95957+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 66, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "21fe034a-a9f6-417d-a6ed-e8c26f3005b8", + "aud": "authenticated", + "role": "authenticated", + "email": "alif.ayana48@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:38:38.061361+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:38:38.894528+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"50433644\", \"name\": \"Alif Muhammad\", \"email\": \"alif.ayana48@gmail.com\", \"full_name\": \"Alif Muhammad\", \"user_name\": \"alif748\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/50433644?v=4\", \"provider_id\": \"50433644\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"alif748\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:38:38.039269+00", + "updated_at": "2025-11-23 18:17:53.915608+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:38:38.061361+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 67, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "22c19165-8c32-45f6-9e85-683a4aeaa2ec", + "aud": "authenticated", + "role": "authenticated", + "email": "minanabdillah4@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 16:42:57.276453+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:42:59.856735+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"121552121\", \"email\": \"minanabdillah4@gmail.com\", \"user_name\": \"minanabdillah\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/121552121?v=4\", \"provider_id\": \"121552121\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"minanabdillah\"}", + "is_super_admin": null, + "created_at": "2025-11-24 16:42:57.223417+00", + "updated_at": "2025-11-24 16:42:59.880262+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 16:42:57.276453+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 68, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "236035ab-a274-4f6f-869d-6aaaf761e659", + "aud": "authenticated", + "role": "authenticated", + "email": "gammertag31@gmail.com", + "encrypted_password": "$2a$10$EwXnrUt1OlHR5uradM28lusaQmmrkW6.1OBUeaq5BhNPaNhwYeeYm", + "email_confirmed_at": "2025-11-24 08:37:34.528251+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 08:36:55.99238+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:37:39.523652+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"236035ab-a274-4f6f-869d-6aaaf761e659\", \"email\": \"gammertag31@gmail.com\", \"username\": \"cidi12\", \"display_name\": \"Kimbab\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 08:36:55.978182+00", + "updated_at": "2025-11-24 08:37:39.525462+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:37:34.528251+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 69, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "240ff65c-897c-40e7-aafd-d2dd1114ea66", + "aud": "authenticated", + "role": "authenticated", + "email": "abangiqi@gmail.com", + "encrypted_password": "$2a$10$5JlRfgYa4FXrI7Tx7BJkBe0Cj9vtj9EBjzlzsadqpapPEWPzGD4Cy", + "email_confirmed_at": "2025-11-24 08:05:14.025998+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 08:04:45.159118+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:56:25.830256+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\", \"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"88605839\", \"email\": \"abangiqi@gmail.com\", \"username\": \"rifqi9604\", \"user_name\": \"Rifqi9604\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/88605839?v=4\", \"provider_id\": \"88605839\", \"display_name\": \"Muhammad Rifqi Fauzan\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Rifqi9604\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:04:45.143735+00", + "updated_at": "2025-11-24 11:56:08.415267+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:05:14.025998+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 70, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "27a09ee3-2c61-4b38-a9f9-1f2810488131", + "aud": "authenticated", + "role": "authenticated", + "email": "meftah.mafazy@gmail.com", + "encrypted_password": "$2a$10$0TazFTFQc0Ic3sYiETCiLOGlUUteMFRu0h4sfzotvcPjHJNh.usA2", + "email_confirmed_at": "2025-11-24 03:21:17.154167+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:21:04.800227+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:21:29.907048+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"27a09ee3-2c61-4b38-a9f9-1f2810488131\", \"email\": \"meftah.mafazy@gmail.com\", \"username\": \"meftahmafazy\", \"display_name\": \"Muhammad Meftah Mafazy\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:21:04.782219+00", + "updated_at": "2025-11-24 08:21:28.652397+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:21:17.154167+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 71, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "289c5f8c-5e0f-4bca-8f66-7641d14a7bb0", + "aud": "authenticated", + "role": "authenticated", + "email": "islahulkafaa@gmail.com", + "encrypted_password": "$2a$10$x.dw/wd.lczqKk.sj3qiv.p2I11B0Jtgcg68KqjnDWh7WlyuCkToW", + "email_confirmed_at": "2025-11-23 13:31:15.050126+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:30:58.722248+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:31:21.400218+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"289c5f8c-5e0f-4bca-8f66-7641d14a7bb0\", \"email\": \"islahulkafaa@gmail.com\", \"username\": \"leugard\", \"display_name\": \"Islahul Kafa\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:30:58.717295+00", + "updated_at": "2025-11-24 08:56:12.878953+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:31:15.050126+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 72, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "29049370-3d6f-4ae3-b44a-fe9d4f6edb89", + "aud": "authenticated", + "role": "authenticated", + "email": "zaidanabdulaziz03@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:11:35.771853+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:11:37.43607+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"121195413\", \"name\": \"Zaidan Abdul Aziz\", \"email\": \"zaidanabdulaziz03@gmail.com\", \"full_name\": \"Zaidan Abdul Aziz\", \"user_name\": \"Zabduziz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/121195413?v=4\", \"provider_id\": \"121195413\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Zabduziz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:11:35.761144+00", + "updated_at": "2025-11-23 16:11:37.439464+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:11:35.771853+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 73, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2935f1f9-c070-422f-b9e0-b378b16a32c8", + "aud": "authenticated", + "role": "authenticated", + "email": "adigintings@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:28:24.179047+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:28:25.390435+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"6162184\", \"name\": \"Adi Primanda Ginting\", \"email\": \"adigintings@gmail.com\", \"full_name\": \"Adi Primanda Ginting\", \"user_name\": \"adipginting\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/6162184?v=4\", \"provider_id\": \"6162184\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"adipginting\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:28:24.172665+00", + "updated_at": "2025-11-23 14:28:25.392257+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:28:24.179047+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 74, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "29ae041b-b96c-45d0-a0e2-256ccd8b2168", + "aud": "authenticated", + "role": "authenticated", + "email": "fadhil06akbar@gmail.com", + "encrypted_password": "$2a$10$Vce2ng1Wrq5F68XZUDOt6.0mYh7NlZPbMEQ3kTtFrwDSranhdd0JS", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "0a4dccd50a038b483585d04e244b584b45125ef012d5dcbb760eb27c", + "confirmation_sent_at": "2025-11-23 14:13:03.403147+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"29ae041b-b96c-45d0-a0e2-256ccd8b2168\", \"email\": \"fadhil06akbar@gmail.com\", \"username\": \"fadhil\", \"display_name\": \"Fadhil\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:13:03.396704+00", + "updated_at": "2025-11-23 14:13:05.096847+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 75, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "29f3fcaa-9104-494e-844e-79d827f74a06", + "aud": "authenticated", + "role": "authenticated", + "email": "ilhamfiqri37@gmail.com", + "encrypted_password": "$2a$10$JVv2k1u.U5SH5I1XFm2C.O/GtDrCib4m1AglhNvQzlTsmXABLwAVS", + "email_confirmed_at": "2025-11-24 06:12:43.89274+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 06:12:18.798946+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:12:58.371588+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"29f3fcaa-9104-494e-844e-79d827f74a06\", \"email\": \"ilhamfiqri37@gmail.com\", \"username\": \"dheten\", \"display_name\": \"Fiqry\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 06:12:18.785181+00", + "updated_at": "2025-11-24 06:12:58.373525+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:12:43.89274+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 76, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2a57227d-2920-4839-8849-93ef38a41b9e", + "aud": "authenticated", + "role": "authenticated", + "email": "riski01.pku@gmail.com", + "encrypted_password": "$2a$10$krA7p.6FIH2.eIy42tG61uWJFH7i2tS4pplWNRcEI/mvTHOASzm2O", + "email_confirmed_at": "2025-11-23 15:27:48.760297+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:27:10.795041+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:19:19.279495+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"2a57227d-2920-4839-8849-93ef38a41b9e\", \"email\": \"riski01.pku@gmail.com\", \"username\": \"risester\", \"display_name\": \"risester\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:27:10.788256+00", + "updated_at": "2025-11-23 16:19:19.282232+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:27:48.760297+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 77, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2ae31e65-4272-431b-bbc1-59158cc7cf11", + "aud": "authenticated", + "role": "authenticated", + "email": "bisnis.huruhara@gmail.com", + "encrypted_password": "$2a$10$t63j/1hO6V6UMAGwzf8f/O8./Seey0MiTZ222jZgF.LC2IlJfVRf2", + "email_confirmed_at": "2025-11-23 13:58:56.045882+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:58:23.843965+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:59:12.144006+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"2ae31e65-4272-431b-bbc1-59158cc7cf11\", \"email\": \"bisnis.huruhara@gmail.com\", \"username\": \"salazar\", \"display_name\": \"KEN\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:58:23.838211+00", + "updated_at": "2025-11-23 13:59:12.145863+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:58:56.045882+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 78, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2b47f090-1c0f-4982-8893-c0b1af1409e6", + "aud": "authenticated", + "role": "authenticated", + "email": "luthlirik@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:53:22.231691+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:53:23.118207+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"124419070\", \"name\": \"luthfi\", \"email\": \"luthlirik@gmail.com\", \"full_name\": \"luthfi\", \"user_name\": \"upi-0\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/124419070?v=4\", \"provider_id\": \"124419070\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"upi-0\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:53:22.225568+00", + "updated_at": "2025-11-24 01:53:23.12137+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:53:22.231691+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 79, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2bb1bf7f-cffb-4b1c-9171-a7e653fb6541", + "aud": "authenticated", + "role": "authenticated", + "email": "zackyhokya045@gmail.com", + "encrypted_password": "$2a$10$PoaaH6wbq3gzXelO2jGN7ex3pQGtjxRZKorqwStcP4DBwzcccnZ6W", + "email_confirmed_at": "2025-11-23 13:24:14.676743+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:23:27.651377+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:24:35.978758+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"2bb1bf7f-cffb-4b1c-9171-a7e653fb6541\", \"email\": \"zackyhokya045@gmail.com\", \"username\": \"jackishere045\", \"display_name\": \"JackSparrow\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:23:27.645838+00", + "updated_at": "2025-11-23 13:24:35.980613+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:24:14.676743+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 80, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2c228e47-a6ad-47c4-984f-99b6e5e8a13d", + "aud": "authenticated", + "role": "authenticated", + "email": "bayanalamahul3@gmail.com", + "encrypted_password": "$2a$10$ccEjPZdOXA4LQLSn2aMd1ecaJ3mo8KUY7w8nq6jYD41NhKlvr/3m.", + "email_confirmed_at": "2025-11-23 22:36:57.308995+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 22:36:16.304443+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:52:07.865779+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"2c228e47-a6ad-47c4-984f-99b6e5e8a13d\", \"email\": \"bayanalamahul3@gmail.com\", \"username\": \"alamahul_bayan\", \"display_name\": \"Alamahul Bayan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 22:36:16.295631+00", + "updated_at": "2025-11-24 15:37:04.411403+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 22:36:57.308995+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 81, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2cd4994b-ba50-43c1-9d78-f4311ef31108", + "aud": "authenticated", + "role": "authenticated", + "email": "nizaram4dhan@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:17:08.016433+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:17:09.111246+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"140038999\", \"name\": \"Nizar Alif Ramadhan\", \"email\": \"nizaram4dhan@gmail.com\", \"full_name\": \"Nizar Alif Ramadhan\", \"user_name\": \"LordDarkness99\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/140038999?v=4\", \"provider_id\": \"140038999\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"LordDarkness99\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:17:08.009297+00", + "updated_at": "2025-11-23 16:17:09.113373+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:17:08.016433+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 82, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2cf73de4-90a4-4d1b-a8f0-748ab0a621e7", + "aud": "authenticated", + "role": "authenticated", + "email": "fadhilakbar0612@gmail.com", + "encrypted_password": "$2a$10$pIBOw0KS.yonyYFXPqfZpu.HG/Qti7LvUAcX1uxiGjiB8YItxxZKy", + "email_confirmed_at": "2025-11-23 14:15:26.18689+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:15:09.240219+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:15:48.56757+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"2cf73de4-90a4-4d1b-a8f0-748ab0a621e7\", \"email\": \"fadhilakbar0612@gmail.com\", \"username\": \"user\", \"display_name\": \"Him\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:15:09.192163+00", + "updated_at": "2025-11-23 15:22:23.372638+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:15:26.18689+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 83, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2d0a00a8-2660-4b60-8de6-f85a6ce98b1d", + "aud": "authenticated", + "role": "authenticated", + "email": "aryhidayatfebriana@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 12:59:55.636707+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 12:59:57.663225+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"121171485\", \"name\": \"Rizky Reza\", \"email\": \"aryhidayatfebriana@gmail.com\", \"full_name\": \"Rizky Reza\", \"user_name\": \"Rezacrown\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/121171485?v=4\", \"provider_id\": \"121171485\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Rezacrown\"}", + "is_super_admin": null, + "created_at": "2025-11-23 12:59:55.628566+00", + "updated_at": "2025-11-23 12:59:57.66506+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:59:55.636707+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 84, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2ea30f2a-fbeb-4af6-b727-bebb0b687939", + "aud": "authenticated", + "role": "authenticated", + "email": "hadiidandri2000@gmail.com", + "encrypted_password": "$2a$10$OS8rv1lWv00bTpejfYxVjeV4pUTwCdys7lVW5N//wHNuUBC9CHPpq", + "email_confirmed_at": "2025-11-24 09:15:05.849185+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 09:14:46.451385+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:15:10.140041+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"2ea30f2a-fbeb-4af6-b727-bebb0b687939\", \"email\": \"hadiidandri2000@gmail.com\", \"username\": \"hadiidandriy12\", \"display_name\": \"Hadiid Andri Yulison\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 09:14:46.437333+00", + "updated_at": "2025-11-24 09:15:10.14305+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 09:15:05.849185+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 85, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2f08b18b-bd87-4d20-9923-26f4759a4b6e", + "aud": "authenticated", + "role": "authenticated", + "email": "ahmadirafif7@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:54:30.591732+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:56:56.481924+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"116771281\", \"name\": \"Rapip\", \"email\": \"ahmadirafif7@gmail.com\", \"full_name\": \"Rapip\", \"user_name\": \"r6rap\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/116771281?v=4\", \"provider_id\": \"116771281\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"r6rap\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:54:30.567978+00", + "updated_at": "2025-11-23 14:56:56.483732+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:54:30.591732+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 86, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "2f788a66-e34e-466a-bbfd-3de920711223", + "aud": "authenticated", + "role": "authenticated", + "email": "rve27github@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:12:14.988329+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:12:16.306197+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"109242186\", \"name\": \"Radika\", \"email\": \"rve27github@gmail.com\", \"full_name\": \"Radika\", \"user_name\": \"Rve27\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/109242186?v=4\", \"provider_id\": \"109242186\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Rve27\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:12:14.974963+00", + "updated_at": "2025-11-23 13:12:16.309143+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:12:14.988329+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 87, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "311d81bf-5b5e-4519-a33b-cdd0ee0ecc82", + "aud": "authenticated", + "role": "authenticated", + "email": "fikricf147@gmail.com", + "encrypted_password": "$2a$10$egIp0eUsmqifdJSoQUpDweleAuGZcWIJp/37irsRMSDn1l1.97OA2", + "email_confirmed_at": "2025-11-23 14:39:37.084628+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:38:29.063855+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:09:01.395634+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"311d81bf-5b5e-4519-a33b-cdd0ee0ecc82\", \"email\": \"fikricf147@gmail.com\", \"username\": \"fikrimusyari\", \"display_name\": \"Fikri Musyari\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:38:29.058756+00", + "updated_at": "2025-11-24 15:10:04.75096+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:39:37.084628+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 88, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "31a21f59-ecea-4bea-9a7b-56dc92c00a12", + "aud": "authenticated", + "role": "authenticated", + "email": "ausathdzil@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 14:28:38.981215+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:28:41.374571+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"147676922\", \"name\": \"Ausath Ikram\", \"email\": \"ausathdzil@gmail.com\", \"full_name\": \"Ausath Ikram\", \"user_name\": \"ausathdzil\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/147676922?v=4\", \"provider_id\": \"147676922\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ausathdzil\"}", + "is_super_admin": null, + "created_at": "2025-11-24 14:28:38.963732+00", + "updated_at": "2025-11-24 15:59:43.377255+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 14:28:38.981215+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 89, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "34298723-449f-4b95-b6cb-1d7d5ab71540", + "aud": "authenticated", + "role": "authenticated", + "email": "jono210678@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 16:19:32.468239+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:19:33.790332+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"245910544\", \"email\": \"jono210678@gmail.com\", \"user_name\": \"Evan281-PRGM\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/245910544?v=4\", \"provider_id\": \"245910544\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Evan281-PRGM\"}", + "is_super_admin": null, + "created_at": "2025-11-24 16:19:32.459722+00", + "updated_at": "2025-11-24 16:19:33.797739+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 16:19:32.468239+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 90, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "34bad6e8-3372-4634-ac93-b10f8882bbb2", + "aud": "authenticated", + "role": "authenticated", + "email": "rheatkhs@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:01:09.230934+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:01:13.442341+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"124652343\", \"name\": \"Febiadi Wisnu Akbar\", \"email\": \"rheatkhs@gmail.com\", \"full_name\": \"Febiadi Wisnu Akbar\", \"user_name\": \"rheatkhs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/124652343?v=4\", \"provider_id\": \"124652343\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rheatkhs\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:01:09.220051+00", + "updated_at": "2025-11-24 03:24:44.831493+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:01:09.230934+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 91, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "35159d0a-33cd-4c64-a36d-d37c97e595db", + "aud": "authenticated", + "role": "authenticated", + "email": "sntdashi@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:50:12.155991+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:50:12.981269+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"142691671\", \"name\": \"rawrzn\", \"email\": \"sntdashi@gmail.com\", \"full_name\": \"rawrzn\", \"user_name\": \"sntdashi\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/142691671?v=4\", \"provider_id\": \"142691671\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sntdashi\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:50:12.150514+00", + "updated_at": "2025-11-23 15:50:12.983223+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:50:12.155991+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 92, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "351fe76c-5a5c-4d5c-a546-f0dd7ccfec0f", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadhidayat0278@gmail.com", + "encrypted_password": "$2a$10$dZBRDHCJVb4ibYq73HITx.YmLMyyFuM.1glUR82RTLrLcxCrmfqXy", + "email_confirmed_at": "2025-11-24 05:08:30.23433+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 05:08:05.569754+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:08:40.183889+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"351fe76c-5a5c-4d5c-a546-f0dd7ccfec0f\", \"email\": \"muhammadhidayat0278@gmail.com\", \"username\": \"lipayyy\", \"display_name\": \"lipayyy\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 05:08:05.561015+00", + "updated_at": "2025-11-24 06:06:46.606241+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:08:30.23433+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 93, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "35930877-5702-4eab-9d47-87ccf4035583", + "aud": "authenticated", + "role": "authenticated", + "email": "111202213986@mhs.dinus.ac.id", + "encrypted_password": "$2a$10$Uk.I7d40Ib4imnGJuuMMMuHnDllmpdviOje4fKTryaj7IX16SUXwK", + "email_confirmed_at": "2025-11-23 12:42:29.542526+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 12:41:56.658341+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 12:42:51.431028+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"35930877-5702-4eab-9d47-87ccf4035583\", \"email\": \"111202213986@mhs.dinus.ac.id\", \"username\": \"frisalvin\", \"display_name\": \"Fris Alvin\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 12:41:56.571895+00", + "updated_at": "2025-11-23 12:42:51.434156+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:42:29.542526+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 94, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3631e3e5-3eac-4297-af3c-6d8648510471", + "aud": "authenticated", + "role": "authenticated", + "email": "khairulumam950@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:38:17.260942+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:38:17.880027+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"89680471\", \"name\": \"khairul umam\", \"email\": \"khairulumam950@gmail.com\", \"full_name\": \"khairul umam\", \"user_name\": \"Umam1210\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/89680471?v=4\", \"provider_id\": \"89680471\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Umam1210\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:38:17.253341+00", + "updated_at": "2025-11-24 06:38:17.881717+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:38:17.260942+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 95, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "369f03f6-dbd3-49a0-af32-ebfb527624b3", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammad.jibrilmuqoddas@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:44:57.567408+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:44:59.188265+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"140037704\", \"name\": \"Murphy Lawden\", \"email\": \"muhammad.jibrilmuqoddas@gmail.com\", \"full_name\": \"Murphy Lawden\", \"user_name\": \"2ndmurphy\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/140037704?v=4\", \"provider_id\": \"140037704\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"2ndmurphy\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:44:57.557633+00", + "updated_at": "2025-11-23 15:44:59.191358+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:44:57.567408+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 96, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "37844c0a-f42b-4bdb-9731-ab9722de70dc", + "aud": "authenticated", + "role": "authenticated", + "email": "rafibudiansyah@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:05:52.032426+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:05:52.604013+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"95408922\", \"email\": \"rafibudiansyah@gmail.com\", \"user_name\": \"rafibudiansyah\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/95408922?v=4\", \"provider_id\": \"95408922\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rafibudiansyah\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:05:52.025416+00", + "updated_at": "2025-11-24 04:05:52.611953+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:05:52.032426+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 97, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "37d7c1ea-d063-4ceb-93ad-9c9784744516", + "aud": "authenticated", + "role": "authenticated", + "email": "tongkorongankostpaksutha@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:40:56.942962+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:40:57.659472+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"239011825\", \"email\": \"tongkorongankostpaksutha@gmail.com\", \"user_name\": \"tongkorongankostpaksutha-max\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/239011825?v=4\", \"provider_id\": \"239011825\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"tongkorongankostpaksutha-max\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:40:56.933027+00", + "updated_at": "2025-11-24 11:40:57.661425+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:40:56.942962+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 98, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "38a5bd5f-c462-424b-986b-db04df906813", + "aud": "authenticated", + "role": "authenticated", + "email": "gilangsukmw@gmail.com", + "encrypted_password": "$2a$10$zeKWcrixg/uVSm781vdwU.6.asOB3dC.TGy2iWwa5syoS.pCUN736", + "email_confirmed_at": "2025-11-24 06:33:59.340867+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 06:33:37.250521+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:50:24.822178+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"38a5bd5f-c462-424b-986b-db04df906813\", \"email\": \"gilangsukmw@gmail.com\", \"username\": \"gilang\", \"display_name\": \"Gilang\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 06:33:37.241172+00", + "updated_at": "2025-11-24 16:50:31.144058+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:33:59.340867+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 99, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "38a738a0-3329-4001-bf88-05d4de6b11d3", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadhaikalaziz28@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:15:26.414776+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:15:27.555554+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"49674750\", \"name\": \"Kaal\", \"email\": \"muhammadhaikalaziz28@gmail.com\", \"full_name\": \"Kaal\", \"user_name\": \"muhaziz28\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/49674750?v=4\", \"provider_id\": \"49674750\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"muhaziz28\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:15:26.407888+00", + "updated_at": "2025-11-23 13:15:27.557951+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:15:26.414776+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 100, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "38cce9e2-df1d-43a5-bf45-595e25744e16", + "aud": "authenticated", + "role": "authenticated", + "email": "cimicimicilung4868@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:53:01.198903+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:53:01.948555+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"169629539\", \"name\": \"Eka Revandi\", \"email\": \"cimicimicilung4868@gmail.com\", \"full_name\": \"Eka Revandi\", \"user_name\": \"caidenrev\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/169629539?v=4\", \"provider_id\": \"169629539\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"caidenrev\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:53:01.189566+00", + "updated_at": "2025-11-24 11:56:03.389819+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:53:01.198903+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 101, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "397f8039-f1c9-42ee-88de-b9597caae518", + "aud": "authenticated", + "role": "authenticated", + "email": "rizqybelajar8@gmail.com", + "encrypted_password": "$2a$10$37nDHh2lzJzyO4xrppmMNeymX9B2UyqZlprUhnd2gleWsTPulUY.e", + "email_confirmed_at": "2025-11-23 22:04:16.994534+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 22:03:50.830107+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 22:04:32.969058+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"397f8039-f1c9-42ee-88de-b9597caae518\", \"email\": \"rizqybelajar8@gmail.com\", \"username\": \"rizqy8\", \"display_name\": \"M Rizqy Almadani\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 22:03:50.797527+00", + "updated_at": "2025-11-24 01:10:19.006456+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 22:04:16.994534+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 102, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "398ae3d5-349e-44fd-9428-f9335f89c511", + "aud": "authenticated", + "role": "authenticated", + "email": "syaefulloharnas16@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 10:09:55.530277+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:13:02.124697+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"92679271\", \"name\": \"Syaefulloh Arnas\", \"email\": \"syaefulloharnas16@gmail.com\", \"full_name\": \"Syaefulloh Arnas\", \"user_name\": \"syaeful16\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/92679271?v=4\", \"provider_id\": \"92679271\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"syaeful16\"}", + "is_super_admin": null, + "created_at": "2025-11-24 10:09:55.522385+00", + "updated_at": "2025-11-24 10:13:02.135007+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 10:09:55.530277+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 103, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "39d68abb-2502-4330-b475-51416bf5269c", + "aud": "authenticated", + "role": "authenticated", + "email": "oppokunew19@gmail.com", + "encrypted_password": "$2a$10$1jBzuR9dFJKYqwZePzMbMudrNTKSPnWyNDBQaVpNU0YpY79O68.qa", + "email_confirmed_at": "2025-11-23 13:19:53.331263+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:19:00.013111+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:20:18.788589+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"39d68abb-2502-4330-b475-51416bf5269c\", \"email\": \"oppokunew19@gmail.com\", \"username\": \"oppo\", \"display_name\": \"oppo\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:19:00.008724+00", + "updated_at": "2025-11-23 13:20:18.790348+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:19:53.331263+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 104, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3ade0045-eb6d-43c8-8781-ea8d281a464e", + "aud": "authenticated", + "role": "authenticated", + "email": "hrfahrizzal@gmail.com", + "encrypted_password": "$2a$10$ALeLqv0OnIk7Hz1opGP1We8sDe.ETTjqrFErEAa6QaBNedDweA6eq", + "email_confirmed_at": "2025-11-24 02:36:58.172862+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 02:36:19.675514+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:37:29.376979+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"3ade0045-eb6d-43c8-8781-ea8d281a464e\", \"email\": \"hrfahrizzal@gmail.com\", \"username\": \"srql\", \"display_name\": \"Hafidz Rizki Fahrizal\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 02:36:19.643321+00", + "updated_at": "2025-11-24 02:37:29.37881+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:36:58.172862+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 105, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3b04b506-ff39-4c2f-9f8f-182c62e4b6f4", + "aud": "authenticated", + "role": "authenticated", + "email": "rizkyfadillah0890@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:04:25.219476+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:04:26.832267+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"130565309\", \"name\": \"Rizky Fadillah\", \"email\": \"rizkyfadillah0890@gmail.com\", \"full_name\": \"Rizky Fadillah\", \"user_name\": \"Kizter\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/130565309?v=4\", \"provider_id\": \"130565309\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Kizter\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:04:25.213481+00", + "updated_at": "2025-11-24 15:56:25.313576+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:04:25.219476+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 106, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3b2fb3a3-9b55-4338-bf09-8952db4371c0", + "aud": "authenticated", + "role": "authenticated", + "email": "syahidizanagi@gmail.com", + "encrypted_password": "$2a$10$FcCtNCyOM5ZyNX.AZX9V5.FBvhJdRXcRsDI1BocGCVfigzwb7cq8e", + "email_confirmed_at": "2025-11-24 04:15:42.536644+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:15:23.393537+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:07:31.634152+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"3b2fb3a3-9b55-4338-bf09-8952db4371c0\", \"email\": \"syahidizanagi@gmail.com\", \"username\": \"syahid\", \"display_name\": \"Syahid\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:15:23.37038+00", + "updated_at": "2025-11-24 12:08:21.412878+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:15:42.536644+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 107, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3b467fcb-af79-4031-85f8-3073e9343058", + "aud": "authenticated", + "role": "authenticated", + "email": "ryanfebrian729@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:55:13.068864+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:55:13.847398+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"118648924\", \"name\": \"Ryan Feb\", \"email\": \"ryanfebrian729@gmail.com\", \"full_name\": \"Ryan Feb\", \"user_name\": \"subjectcode\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/118648924?v=4\", \"provider_id\": \"118648924\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"subjectcode\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:55:13.063478+00", + "updated_at": "2025-11-24 12:55:13.849372+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:55:13.068864+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 108, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3b4c66b3-4ec3-465b-998c-32c9ab7bf2b4", + "aud": "authenticated", + "role": "authenticated", + "email": "hajopan12@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:40:48.319606+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:40:49.147813+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"96819952\", \"email\": \"hajopan12@gmail.com\", \"user_name\": \"hajopan\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/96819952?v=4\", \"provider_id\": \"96819952\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"hajopan\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:40:48.294475+00", + "updated_at": "2025-11-24 02:51:37.272186+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:40:48.319606+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 109, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3b5a0b3a-5930-4cbc-ac78-b1d9d20ac460", + "aud": "authenticated", + "role": "authenticated", + "email": "imaim3024@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:46:07.173297+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:42:39.387845+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"107790212\", \"name\": \"AimZ\", \"email\": \"imaim3024@gmail.com\", \"full_name\": \"AimZ\", \"user_name\": \"AimZ24\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/107790212?v=4\", \"provider_id\": \"107790212\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AimZ24\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:46:07.165351+00", + "updated_at": "2025-11-24 07:16:58.189755+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:46:07.173297+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 110, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3b901d8e-7c96-483d-b299-98c8e54f5b57", + "aud": "authenticated", + "role": "authenticated", + "email": "rafligamercratf@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:38:56.126978+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:38:56.760483+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"86522236\", \"name\": \"rafly\", \"email\": \"rafligamercratf@gmail.com\", \"full_name\": \"rafly\", \"user_name\": \"paemons\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/86522236?v=4\", \"provider_id\": \"86522236\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"paemons\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:38:56.121543+00", + "updated_at": "2025-11-23 13:38:56.76223+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:38:56.126978+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 111, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3b9e0c60-5a32-4d1c-b011-46390971b67f", + "aud": "authenticated", + "role": "authenticated", + "email": "jojohyperbackend@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:39:10.964055+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:39:12.315221+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"241575995\", \"name\": \"ZeeHyper02\", \"email\": \"jojohyperbackend@gmail.com\", \"full_name\": \"ZeeHyper02\", \"user_name\": \"jojohyperbackend-hub\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/241575995?v=4\", \"provider_id\": \"241575995\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"jojohyperbackend-hub\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:39:10.954675+00", + "updated_at": "2025-11-24 11:32:59.704175+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:39:10.964055+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 112, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3c96f60e-d8ab-4e2d-86f6-6a7f4b40c179", + "aud": "authenticated", + "role": "authenticated", + "email": "ihenry@gmail.com", + "encrypted_password": "$2a$10$kk1uWGADY0JMber0Jpr.WuOET7u1vKMszjLZfYroDsBECyCcttlPe", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "af55066466af7ae1496157001b99e1af99a6820d8298ec97a3b9e2d0", + "confirmation_sent_at": "2025-11-24 09:58:54.08013+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"3c96f60e-d8ab-4e2d-86f6-6a7f4b40c179\", \"email\": \"ihenry@gmail.com\", \"username\": \"hstore\", \"display_name\": \"HenryStore\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 09:58:54.071902+00", + "updated_at": "2025-11-24 09:58:55.840871+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 113, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3cdffe97-dad4-47e3-825d-d9c13ae815b5", + "aud": "authenticated", + "role": "authenticated", + "email": "dimsartz021@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 12:57:23.382126+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 12:57:24.064772+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"109076424\", \"name\": \"Dimas Tri M\", \"email\": \"dimsartz021@gmail.com\", \"full_name\": \"Dimas Tri M\", \"user_name\": \"dimasu21\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/109076424?v=4\", \"provider_id\": \"109076424\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"dimasu21\"}", + "is_super_admin": null, + "created_at": "2025-11-23 12:57:23.375647+00", + "updated_at": "2025-11-23 12:57:24.066597+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:57:23.382126+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 114, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3da30612-1885-423f-a836-3cc7ca33add9", + "aud": "authenticated", + "role": "authenticated", + "email": "fathurrahman081296@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:25:54.985734+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:29:24.485379+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"186982643\", \"name\": \"Fathur Rahman\", \"email\": \"fathurrahman081296@gmail.com\", \"full_name\": \"Fathur Rahman\", \"user_name\": \"ThurZ34\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/186982643?v=4\", \"provider_id\": \"186982643\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ThurZ34\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:25:54.977925+00", + "updated_at": "2025-11-24 08:38:51.158726+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:25:54.985734+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 115, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3e20b9ee-f566-4b0f-9e4f-cbb92d31031c", + "aud": "authenticated", + "role": "authenticated", + "email": "hafidnurazis@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-19 16:42:36.630605+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-21 12:19:27.948212+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"73023445\", \"name\": \"Hafid Nur\", \"email\": \"hafidnurazis@gmail.com\", \"full_name\": \"Hafid Nur\", \"user_name\": \"hafidnrzs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/73023445?v=4\", \"provider_id\": \"73023445\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"hafidnrzs\"}", + "is_super_admin": null, + "created_at": "2025-11-19 16:42:36.556727+00", + "updated_at": "2025-11-21 12:19:27.961425+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-19 16:42:36.630605+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 116, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3f60fb92-3440-4f61-82fe-192c6bcdb301", + "aud": "authenticated", + "role": "authenticated", + "email": "helmiputra265@gmail.com", + "encrypted_password": "$2a$10$9fnDWdQICVzS.YIKLvJIjuV40zd7sYqeG04P2IhHQi9AV6ynR9dwm", + "email_confirmed_at": "2025-11-24 04:37:58.07826+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:37:43.421914+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:38:08.303274+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"3f60fb92-3440-4f61-82fe-192c6bcdb301\", \"email\": \"helmiputra265@gmail.com\", \"username\": \"sutarozu\", \"display_name\": \"sutarozu\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:37:43.411202+00", + "updated_at": "2025-11-24 08:43:15.744995+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:37:58.07826+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 117, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3fc8adf4-a75a-4272-a431-a9b614e8dbd3", + "aud": "authenticated", + "role": "authenticated", + "email": "farhansyamsuddin3@gmail.com", + "encrypted_password": "$2a$10$kKQkJjCcTZiO3jhLBNmiq.7e2pToiV/X5mraPpLDHGAM2Xg3GJDbW", + "email_confirmed_at": "2025-11-23 16:45:48.429306+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:45:20.120959+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:46:23.597792+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"3fc8adf4-a75a-4272-a431-a9b614e8dbd3\", \"email\": \"farhansyamsuddin3@gmail.com\", \"username\": \"gochidev\", \"display_name\": \"M. Farhan Syamsudin\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:45:20.095143+00", + "updated_at": "2025-11-24 02:19:24.249113+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:45:48.429306+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 118, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "3ff2ae42-a561-4338-ba61-f444409322c3", + "aud": "authenticated", + "role": "authenticated", + "email": "fauzanabiyan33@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:54:07.646676+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:54:08.133434+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"135426983\", \"name\": \"Hoshino Abydos ᴾᴿᴼ▄︻デk̷n̷e̷a̷f̷══━一\", \"email\": \"fauzanabiyan33@gmail.com\", \"full_name\": \"Hoshino Abydos ᴾᴿᴼ▄︻デk̷n̷e̷a̷f̷══━一\", \"user_name\": \"ChakarKucing\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/135426983?v=4\", \"provider_id\": \"135426983\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ChakarKucing\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:54:07.628559+00", + "updated_at": "2025-11-24 12:54:08.138463+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:54:07.646676+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 119, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "40194320-d827-4a53-bb8f-36303a6713a2", + "aud": "authenticated", + "role": "authenticated", + "email": "bagusindrayanaindo@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:03:17.328083+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:03:18.449245+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"36830534\", \"name\": \"Bagus Indrayana\", \"email\": \"bagusindrayanaindo@gmail.com\", \"full_name\": \"Bagus Indrayana\", \"user_name\": \"bagusindrayana\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/36830534?v=4\", \"provider_id\": \"36830534\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"bagusindrayana\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:03:17.321465+00", + "updated_at": "2025-11-24 01:03:18.451257+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:03:17.328083+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 120, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "41412e38-3b07-464f-93a4-457ed1cf6176", + "aud": "authenticated", + "role": "authenticated", + "email": "daunn871@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:56:44.01051+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:56:44.560112+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"147286216\", \"name\": \"Daun\", \"email\": \"daunn871@gmail.com\", \"full_name\": \"Daun\", \"user_name\": \"daunss\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/147286216?v=4\", \"provider_id\": \"147286216\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"daunss\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:56:44.003799+00", + "updated_at": "2025-11-24 16:23:38.57019+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:56:44.01051+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 121, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "4155a53f-252e-4b44-a951-851ea5cce606", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadirfanbaihaqi538@gmail.com", + "encrypted_password": "$2a$10$ZqraWr5/Bozclat6R8VQdelBWwYDwjUEWaLvdmoW/FNd1sFeKXAoS", + "email_confirmed_at": "2025-11-23 14:09:25.0571+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:07:11.26355+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:16:59.853404+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"4155a53f-252e-4b44-a951-851ea5cce606\", \"email\": \"muhammadirfanbaihaqi538@gmail.com\", \"username\": \"irfanbaihaqi\", \"display_name\": \"Muhammad Irfan Baihaqi\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:07:11.252567+00", + "updated_at": "2025-11-23 14:16:59.859765+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:09:25.0571+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 122, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "41899d5b-9f1f-4ca9-8be8-9837ea83f493", + "aud": "authenticated", + "role": "authenticated", + "email": "mujahidislami030@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:17:17.253913+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:17:17.782347+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"37067542\", \"name\": \"Mujahid Islami Primaldi Abdullah\", \"email\": \"mujahidislami030@gmail.com\", \"full_name\": \"Mujahid Islami Primaldi Abdullah\", \"user_name\": \"Mujahid33\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/37067542?v=4\", \"provider_id\": \"37067542\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Mujahid33\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:17:17.247533+00", + "updated_at": "2025-11-24 07:04:54.380039+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:17:17.253913+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 123, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "418f738b-2187-4432-957d-15eb258a65bb", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadkevinalvarel@gmail.com", + "encrypted_password": "$2a$10$TDh1TKSNu612fQmBDWIgUuPr/qB6TdQF0mNvqmfSZR6VolqyCryGa", + "email_confirmed_at": "2025-11-23 16:30:38.043749+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:29:59.319908+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:05:08.241809+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"418f738b-2187-4432-957d-15eb258a65bb\", \"email\": \"muhammadkevinalvarel@gmail.com\", \"username\": \"bahenol\", \"display_name\": \"sek nugas jarkom heula\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:29:59.306399+00", + "updated_at": "2025-11-24 18:05:33.7757+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:30:38.043749+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 124, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "433c45f0-1d8e-442e-95c8-bd9c7b97108e", + "aud": "authenticated", + "role": "authenticated", + "email": "galangryandana@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 00:02:10.219844+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 00:02:11.079338+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"52831222\", \"email\": \"galangryandana@gmail.com\", \"user_name\": \"galangryandana\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/52831222?v=4\", \"provider_id\": \"52831222\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"galangryandana\"}", + "is_super_admin": null, + "created_at": "2025-11-24 00:02:10.205807+00", + "updated_at": "2025-11-24 12:43:26.634487+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:02:10.219844+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 125, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "43ea0f85-1b69-4235-ae25-523ad1984d46", + "aud": "authenticated", + "role": "authenticated", + "email": "nasruladitri2@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:48:54.447616+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:48:55.725521+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"67877848\", \"name\": \"Nasrul Aditri\", \"email\": \"nasruladitri2@gmail.com\", \"full_name\": \"Nasrul Aditri\", \"user_name\": \"nasruladtri\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/67877848?v=4\", \"provider_id\": \"67877848\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"nasruladtri\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:48:54.438739+00", + "updated_at": "2025-11-24 06:32:50.160998+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:48:54.447616+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 126, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "43f5ef95-ac4b-4d5e-bf57-b6bf0c30936d", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadariefcp@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:38:32.118545+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:38:33.17181+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"68651539\", \"name\": \"Muhammad Arief C P\", \"email\": \"muhammadariefcp@gmail.com\", \"full_name\": \"Muhammad Arief C P\", \"user_name\": \"ariefcatur\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/68651539?v=4\", \"provider_id\": \"68651539\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ariefcatur\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:38:32.109942+00", + "updated_at": "2025-11-24 15:31:42.31639+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:38:32.118545+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 127, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "44045f03-964c-4935-9918-cddc36676278", + "aud": "authenticated", + "role": "authenticated", + "email": "adityamaullana234@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 20:43:18.038823+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 20:47:20.263169+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"117872008\", \"name\": \"Aditya Maulana zidqy \", \"email\": \"adityamaullana234@gmail.com\", \"full_name\": \"Aditya Maulana zidqy \", \"user_name\": \"adityamaulanazidqy\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/117872008?v=4\", \"provider_id\": \"117872008\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"adityamaulanazidqy\"}", + "is_super_admin": null, + "created_at": "2025-11-23 20:43:18.009412+00", + "updated_at": "2025-11-24 07:37:38.717751+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 20:43:18.038823+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 128, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "44192093-fadb-4be9-8662-d02e9c47a1b3", + "aud": "authenticated", + "role": "authenticated", + "email": "g4mless@proton.me", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 00:57:58.095676+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:11:05.921609+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"64618623\", \"name\": \"g4mless\", \"email\": \"g4mless@proton.me\", \"full_name\": \"g4mless\", \"user_name\": \"g4mless\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/64618623?v=4\", \"provider_id\": \"64618623\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"g4mless\"}", + "is_super_admin": null, + "created_at": "2025-11-24 00:57:58.086371+00", + "updated_at": "2025-11-24 12:11:05.924095+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:57:58.095676+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 129, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "46769f5b-f33f-4777-aff1-9c25b9c488e8", + "aud": "authenticated", + "role": "authenticated", + "email": "justgilang99@gmail.com", + "encrypted_password": "$2a$10$MsmGUb7jSafzDWXM0H5sw.36szSljhSttaT.Xn81.ggZFvC3ExTa.", + "email_confirmed_at": "2025-11-24 04:16:44.389279+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:16:11.848304+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:25:02.834077+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"46769f5b-f33f-4777-aff1-9c25b9c488e8\", \"email\": \"justgilang99@gmail.com\", \"username\": \"kresekhitam\", \"display_name\": \"Zen1th\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:16:11.841266+00", + "updated_at": "2025-11-24 12:06:06.22801+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:16:44.389279+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 130, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "46a4954b-1b91-4647-a5ba-376bbc299402", + "aud": "authenticated", + "role": "authenticated", + "email": "jezudu@denipl.net", + "encrypted_password": "$2a$10$QGH4udVJ23L7y989L319x.sbIhvBgD2U9IhLX3IsutdQ0cb.jZJG6", + "email_confirmed_at": "2025-11-18 09:37:27.337216+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-18 09:35:25.416478+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-18 09:57:39.091409+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"46a4954b-1b91-4647-a5ba-376bbc299402\", \"email\": \"jezudu@denipl.net\", \"username\": \"jezudu\", \"display_name\": \"Jezudu Denipl\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-18 09:35:25.390859+00", + "updated_at": "2025-11-24 04:21:23.241315+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-18 09:37:27.337216+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 131, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "473b0a56-7583-43e6-8511-2e73889e9b37", + "aud": "authenticated", + "role": "authenticated", + "email": "alfisahri33@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:28:25.508553+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:28:26.192588+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"48620379\", \"name\": \"alfi sahri\", \"email\": \"alfisahri33@gmail.com\", \"full_name\": \"alfi sahri\", \"user_name\": \"alfi08\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/48620379?v=4\", \"provider_id\": \"48620379\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"alfi08\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:28:25.501717+00", + "updated_at": "2025-11-23 15:28:26.194374+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:28:25.508553+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 132, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "47866d52-c02c-44d9-a89d-76ee1103eed9", + "aud": "authenticated", + "role": "authenticated", + "email": "mraihanaf0@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 16:38:05.583235+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:38:06.389171+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"173541951\", \"name\": \"Muhammad Raihan Al Farizy\", \"email\": \"mraihanaf0@gmail.com\", \"full_name\": \"Muhammad Raihan Al Farizy\", \"user_name\": \"mraihanaf\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/173541951?v=4\", \"provider_id\": \"173541951\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mraihanaf\"}", + "is_super_admin": null, + "created_at": "2025-11-24 16:38:05.575261+00", + "updated_at": "2025-11-24 16:38:06.393369+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 16:38:05.583235+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 133, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "47e2dd3f-339f-4ce5-aa42-4d89a1fd4aea", + "aud": "authenticated", + "role": "authenticated", + "email": "obenpasaribu@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:16:35.921548+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:16:36.715996+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"142556157\", \"email\": \"obenpasaribu@gmail.com\", \"user_name\": \"Obenpasaribu\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/142556157?v=4\", \"provider_id\": \"142556157\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Obenpasaribu\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:16:35.914444+00", + "updated_at": "2025-11-24 03:07:33.227794+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:16:35.921548+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 134, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "48a70338-aa6b-4f22-b5b1-458da13d85c6", + "aud": "authenticated", + "role": "authenticated", + "email": "2206073@itg.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:52:32.084026+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:52:33.017244+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"173561622\", \"name\": \"ZaenalSyamsyulArief\", \"email\": \"2206073@itg.ac.id\", \"full_name\": \"ZaenalSyamsyulArief\", \"user_name\": \"zaenalSamsul\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/173561622?v=4\", \"provider_id\": \"173561622\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"zaenalSamsul\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:52:32.061876+00", + "updated_at": "2025-11-24 13:52:33.023577+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:52:32.084026+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 135, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "4b5b6fd7-4f79-412b-967e-0437d3c4c6af", + "aud": "authenticated", + "role": "authenticated", + "email": "ronyronny12@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:37:56.790925+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:37:57.514114+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"205940074\", \"email\": \"ronyronny12@gmail.com\", \"user_name\": \"hexxploid\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/205940074?v=4\", \"provider_id\": \"205940074\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"hexxploid\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:37:56.781874+00", + "updated_at": "2025-11-23 13:37:57.522741+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:37:56.790925+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 136, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "4bda0567-2a5a-4fda-8d8f-a5998e9d8800", + "aud": "authenticated", + "role": "authenticated", + "email": "malfathiratir@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:23:45.198507+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:06:33.246766+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:36:55.286388+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"234097905\", \"email\": \"malfathiratir@gmail.com\", \"user_name\": \"malfathiratir-arch\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/234097905?v=4\", \"provider_id\": \"234097905\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"malfathiratir-arch\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:06:33.237484+00", + "updated_at": "2025-11-24 14:32:54.484744+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:23:45.198507+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 137, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "4c4abd7a-772d-49fe-977a-57a917adbe6a", + "aud": "authenticated", + "role": "authenticated", + "email": "lakazamlak02@gmail.com", + "encrypted_password": "$2a$10$qi56jtc30jbJyk5Yjvn8A.GmoQQZBUn19/eE0o9wltrjQCvCXXnQC", + "email_confirmed_at": "2025-11-23 16:49:49.635281+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:49:30.24652+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 18:29:44.303301+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"4c4abd7a-772d-49fe-977a-57a917adbe6a\", \"email\": \"lakazamlak02@gmail.com\", \"username\": \"zhak\", \"display_name\": \"ZhAk\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:49:30.239196+00", + "updated_at": "2025-11-24 17:24:02.873258+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:49:49.635281+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 138, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "4cdb4fd8-565e-47c7-9559-215a31f4bd1c", + "aud": "authenticated", + "role": "authenticated", + "email": "nazedev@gmail.com", + "encrypted_password": "$2a$10$tmtosh1bepPbdH74oqdoB.ABrj4bEZjlC.myLZnYDltaZ3c5H4DW2", + "email_confirmed_at": "2025-11-24 03:40:28.622038+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:39:53.869891+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:40:35.403414+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"4cdb4fd8-565e-47c7-9559-215a31f4bd1c\", \"email\": \"nazedev@gmail.com\", \"username\": \"nazedev\", \"display_name\": \"Naze\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:39:53.832534+00", + "updated_at": "2025-11-24 03:40:35.406454+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:40:28.622038+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 139, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "4d2efba3-a0dd-448e-9a40-a7395a15f863", + "aud": "authenticated", + "role": "authenticated", + "email": "revelcahyadi2004@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:15:45.60689+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:15:47.179522+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"150690136\", \"name\": \"Revel Cahyadi\", \"email\": \"revelcahyadi2004@gmail.com\", \"full_name\": \"Revel Cahyadi\", \"user_name\": \"yuu740\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/150690136?v=4\", \"provider_id\": \"150690136\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"yuu740\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:15:45.600848+00", + "updated_at": "2025-11-24 10:14:48.320506+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:15:45.60689+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 140, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "4d9a29b1-080e-47d0-836b-f33dfbf84c6c", + "aud": "authenticated", + "role": "authenticated", + "email": "pulungwicaksono2006@gmail.com", + "encrypted_password": "$2a$10$3aVukjmZ8UY8In0mFQzjS.Y2mOxjsBtk8mvsO8et2pYMmTWDZrOfG", + "email_confirmed_at": "2025-11-23 15:31:29.948454+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:31:02.781672+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:05:15.468455+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\", \"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"57614425\", \"name\": \"Pulung Wicaksono\", \"email\": \"pulungwicaksono2006@gmail.com\", \"username\": \"fulung\", \"full_name\": \"Pulung Wicaksono\", \"user_name\": \"kedirinesia\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/57614425?v=4\", \"provider_id\": \"57614425\", \"display_name\": \"Pulung\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"kedirinesia\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:31:02.773593+00", + "updated_at": "2025-11-24 16:05:15.490948+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:31:29.948454+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 141, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "501c795f-fd27-4f86-900e-fbbbd02474a7", + "aud": "authenticated", + "role": "authenticated", + "email": "ferospedrosa@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:54:51.394267+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:54:52.394327+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"173426540\", \"email\": \"ferospedrosa@gmail.com\", \"user_name\": \"Feros999\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/173426540?v=4\", \"provider_id\": \"173426540\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Feros999\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:54:51.386554+00", + "updated_at": "2025-11-24 03:47:58.684733+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:54:51.394267+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 142, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "503377c4-26af-4890-82f1-a3619953b7b7", + "aud": "authenticated", + "role": "authenticated", + "email": "bilgrandov9902003@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 23:09:01.896264+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 23:09:03.822241+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"181977388\", \"email\": \"bilgrandov9902003@gmail.com\", \"user_name\": \"Bilgrandov\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/181977388?v=4\", \"provider_id\": \"181977388\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Bilgrandov\"}", + "is_super_admin": null, + "created_at": "2025-11-23 23:09:01.88883+00", + "updated_at": "2025-11-23 23:09:03.824828+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 23:09:01.896264+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 143, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "509825be-9d84-451e-9833-f2bbd5507ade", + "aud": "authenticated", + "role": "authenticated", + "email": "gbrnmhd89@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:19:00.903961+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:19:01.785581+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"174370866\", \"name\": \"Gilbran Mahda\", \"email\": \"gbrnmhd89@gmail.com\", \"full_name\": \"Gilbran Mahda\", \"user_name\": \"mamahda\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/174370866?v=4\", \"provider_id\": \"174370866\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mamahda\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:19:00.897939+00", + "updated_at": "2025-11-23 16:47:11.610747+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:19:00.903961+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 144, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "512805dd-507c-4193-adad-a1cf5f76a777", + "aud": "authenticated", + "role": "authenticated", + "email": "jevonit252@gmail.com", + "encrypted_password": "$2a$10$y1hXTDtZroaC149YRDfPZuX0V1x7QwsihgYuDRPitfVkXpztHJnR6", + "email_confirmed_at": "2025-11-23 13:04:27.2813+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:04:07.832232+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:04:32.798307+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"512805dd-507c-4193-adad-a1cf5f76a777\", \"email\": \"jevonit252@gmail.com\", \"username\": \"rhuta\", \"display_name\": \"Jevon\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:04:07.822861+00", + "updated_at": "2025-11-23 15:05:41.069629+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:04:27.2813+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 145, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "516deb0d-9ec1-4776-835f-6daba29e7c1b", + "aud": "authenticated", + "role": "authenticated", + "email": "iwank31052003@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:58:54.290775+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:58:55.411781+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"126887112\", \"name\": \"Iwan Kurniawan\", \"email\": \"iwank31052003@gmail.com\", \"full_name\": \"Iwan Kurniawan\", \"user_name\": \"Wanx157\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/126887112?v=4\", \"provider_id\": \"126887112\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Wanx157\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:58:54.280773+00", + "updated_at": "2025-11-24 06:58:55.41773+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:58:54.290775+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 146, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5182dafb-4a12-4bcc-b967-6ea50aefe7d0", + "aud": "authenticated", + "role": "authenticated", + "email": "rifanajieagung48@gmail.com", + "encrypted_password": "$2a$10$JvgcuOtlAuSyakG1WxKxyuBXQW3iNzDAB6X48NAXqApQLvSFhNEXy", + "email_confirmed_at": "2025-11-23 13:23:30.709682+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:22:44.350217+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:23:54.566911+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"5182dafb-4a12-4bcc-b967-6ea50aefe7d0\", \"email\": \"rifanajieagung48@gmail.com\", \"username\": \"rag48\", \"display_name\": \"Rifan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:22:44.342341+00", + "updated_at": "2025-11-23 13:23:54.569494+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:23:30.709682+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 147, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "51832f14-1e08-4543-b1a0-d8107573efbc", + "aud": "authenticated", + "role": "authenticated", + "email": "anata@yopmail.com", + "encrypted_password": "$2a$10$8T3ACU/l68fsJda2KvpXAefRScr9dZ2r6Z5mCSK3V5f5YEVO0KSbO", + "email_confirmed_at": "2025-11-21 11:46:51.314076+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-21 11:46:37.000886+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-21 12:21:08.697892+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"51832f14-1e08-4543-b1a0-d8107573efbc\", \"email\": \"anata@yopmail.com\", \"username\": \"anata\", \"display_name\": \"Anata\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-20 15:21:36.638919+00", + "updated_at": "2025-11-21 12:21:08.699785+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-21 11:46:51.314076+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 148, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "51896ad3-8184-4e4a-a9c8-4eaa39ac8451", + "aud": "authenticated", + "role": "authenticated", + "email": "fajargustiana2@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:01:31.569681+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:01:32.416715+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"119719801\", \"name\": \"Fajar Gustiana\", \"email\": \"fajargustiana2@gmail.com\", \"full_name\": \"Fajar Gustiana\", \"user_name\": \"Auxesia23\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/119719801?v=4\", \"provider_id\": \"119719801\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Auxesia23\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:01:31.562948+00", + "updated_at": "2025-11-24 06:40:11.941809+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:01:31.569681+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 149, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "51bb6cfe-bd23-4ef9-9992-96b4e1c3a7ad", + "aud": "authenticated", + "role": "authenticated", + "email": "raflyazizabdillah30@gmail.com", + "encrypted_password": "$2a$10$OTfv7NiwPNUFh5XQigeDs./MPgaeYbjoURubE1rngDRnd61ezB9f2", + "email_confirmed_at": "2025-11-23 18:05:11.168244+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 18:04:53.025+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:17:52.585326+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"51bb6cfe-bd23-4ef9-9992-96b4e1c3a7ad\", \"email\": \"raflyazizabdillah30@gmail.com\", \"username\": \"raflyazizabdillah\", \"display_name\": \"Rafly Aziz Abdillah\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 18:04:52.969695+00", + "updated_at": "2025-11-24 16:30:38.196289+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 18:05:11.168244+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 150, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "51d0ed9b-5d7c-400e-a75e-b3777dae5be8", + "aud": "authenticated", + "role": "authenticated", + "email": "patrickmarcel65@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:44:59.558881+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:45:00.380163+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"103352843\", \"name\": \"Patrick Marcel\", \"email\": \"patrickmarcel65@gmail.com\", \"full_name\": \"Patrick Marcel\", \"user_name\": \"Igrise12\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/103352843?v=4\", \"provider_id\": \"103352843\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Igrise12\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:44:59.551336+00", + "updated_at": "2025-11-23 13:45:00.381945+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:44:59.558881+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 151, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "529c4fa4-4894-4c88-ba63-857532f7fef3", + "aud": "authenticated", + "role": "authenticated", + "email": "auranawamadani@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 17:21:20.037402+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 17:21:21.68903+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"84976473\", \"name\": \"Aura N,A\", \"email\": \"auranawamadani@gmail.com\", \"full_name\": \"Aura N,A\", \"user_name\": \"Bananaurawr\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/84976473?v=4\", \"provider_id\": \"84976473\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Bananaurawr\"}", + "is_super_admin": null, + "created_at": "2025-11-23 17:21:20.023844+00", + "updated_at": "2025-11-23 17:21:21.695589+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 17:21:20.037402+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 152, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "52b81c76-fa09-4e96-8dfd-f405c5c09808", + "aud": "authenticated", + "role": "authenticated", + "email": "ayamkucing129@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:09:49.278528+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:09:50.179873+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"122076311\", \"name\": \"Elang\", \"email\": \"ayamkucing129@gmail.com\", \"full_name\": \"Elang\", \"user_name\": \"Elang02\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/122076311?v=4\", \"provider_id\": \"122076311\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Elang02\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:09:49.273168+00", + "updated_at": "2025-11-24 11:38:42.065821+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:09:49.278528+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 153, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "543eced6-00b4-4227-82b0-13e626fb1c88", + "aud": "authenticated", + "role": "authenticated", + "email": "ayyasi52@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 12:55:55.237029+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 12:55:56.053323+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"141034175\", \"email\": \"ayyasi52@gmail.com\", \"user_name\": \"Asepgunawan112\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/141034175?v=4\", \"provider_id\": \"141034175\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Asepgunawan112\"}", + "is_super_admin": null, + "created_at": "2025-11-23 12:55:55.230951+00", + "updated_at": "2025-11-23 12:55:56.055695+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:55:55.237029+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 154, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "548a310d-05a7-4b64-9d5b-032d848446fc", + "aud": "authenticated", + "role": "authenticated", + "email": "itsandka@gmail.com", + "encrypted_password": "$2a$10$aOL.3sAoXonmMlEEVI5YeOVP/ifPQKDYMSiC.KXxvQKhdIpLVWb0S", + "email_confirmed_at": "2025-10-28 17:19:08.643387+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-10-28 17:18:45.870739+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-10-28 17:19:17.348091+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"548a310d-05a7-4b64-9d5b-032d848446fc\", \"email\": \"itsandka@gmail.com\", \"username\": \"korekore\", \"display_name\": \"korekore\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-10-28 17:18:45.829593+00", + "updated_at": "2025-10-28 17:19:17.349885+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-10-28 17:19:08.643387+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 155, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "54db9209-843c-465c-82c2-d8c4ea72dc7e", + "aud": "authenticated", + "role": "authenticated", + "email": "ryanda.valents3649@student.unri.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:13:18.47921+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:13:19.636846+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"143876980\", \"name\": \"Ryanda Valents Anakri\", \"email\": \"ryanda.valents3649@student.unri.ac.id\", \"full_name\": \"Ryanda Valents Anakri\", \"user_name\": \"ryandaaa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/143876980?v=4\", \"provider_id\": \"143876980\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ryandaaa\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:13:18.47256+00", + "updated_at": "2025-11-24 04:16:34.942193+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:13:18.47921+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 156, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "54e0cfb9-55b7-4c00-812f-f04296c11a70", + "aud": "authenticated", + "role": "authenticated", + "email": "noaa277@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:29:54.26335+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:29:55.296596+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"195390036\", \"name\": \"Karakaira\", \"email\": \"noaa277@gmail.com\", \"full_name\": \"Karakaira\", \"user_name\": \"Abrahamazka\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/195390036?v=4\", \"provider_id\": \"195390036\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Abrahamazka\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:29:54.255894+00", + "updated_at": "2025-11-24 13:29:55.298669+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:29:54.26335+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 157, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "550fc044-10bd-49a1-9c09-50bd4d5325cc", + "aud": "authenticated", + "role": "authenticated", + "email": "larasrahm22@gmail.com", + "encrypted_password": "$2a$10$0SHENZKyjlRSHwdNOQyLouYbv04gSfyzWTcU4u4HJClOFs2BEed/O", + "email_confirmed_at": "2025-11-23 22:30:08.275465+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 22:28:54.968116+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:33:52.41312+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"550fc044-10bd-49a1-9c09-50bd4d5325cc\", \"email\": \"larasrahm22@gmail.com\", \"username\": \"larsrahs_\", \"display_name\": \"lasara1\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 22:28:54.954704+00", + "updated_at": "2025-11-24 01:33:52.433423+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 22:30:08.275465+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 158, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5568477e-e7a0-4a93-b1de-0e775414111a", + "aud": "authenticated", + "role": "authenticated", + "email": "zrbagus5@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:47:48.441786+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:47:52.93675+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"121152839\", \"name\": \"Bagus\", \"email\": \"zrbagus5@gmail.com\", \"full_name\": \"Bagus\", \"user_name\": \"bagusgakbagus\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/121152839?v=4\", \"provider_id\": \"121152839\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"bagusgakbagus\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:47:48.436012+00", + "updated_at": "2025-11-23 13:47:52.938565+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:47:48.441786+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 159, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "56f8b4f6-f31e-4faf-87f6-acc8d83bd72d", + "aud": "authenticated", + "role": "authenticated", + "email": "jonfrymarbun@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:16:02.99104+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:31:34.050958+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"123793222\", \"name\": \"Jonfry Agung Marbun\", \"email\": \"jonfrymarbun@gmail.com\", \"full_name\": \"Jonfry Agung Marbun\", \"user_name\": \"jonfry1175\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/123793222?v=4\", \"provider_id\": \"123793222\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"jonfry1175\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:16:02.982799+00", + "updated_at": "2025-11-24 14:36:27.965815+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:16:02.99104+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 160, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5768d665-77a3-4ae3-b2ee-37e408c0e98e", + "aud": "authenticated", + "role": "authenticated", + "email": "andika@umpo.ac.id", + "encrypted_password": "$2a$10$oWg2Q2RfeR9RmPr1zin75u3yG1qY5qQXNd67WOVBSpqTEp/HZnDWG", + "email_confirmed_at": "2025-10-24 12:30:03.768651+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-10-24 12:28:25.287949+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-10-24 16:11:56.102701+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"5768d665-77a3-4ae3-b2ee-37e408c0e98e\", \"email\": \"andika@umpo.ac.id\", \"username\": \"xirfs\", \"display_name\": \"Kikou\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-10-24 12:28:25.261428+00", + "updated_at": "2025-10-24 17:49:48.05428+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-10-24 12:30:03.768651+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 161, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "576d1650-71c8-4a5c-81c9-dda3284c13c4", + "aud": "authenticated", + "role": "authenticated", + "email": "snarsaggaf@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:09:01.053223+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:09:01.915246+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"173850525\", \"name\": \"pii\", \"email\": \"snarsaggaf@gmail.com\", \"full_name\": \"pii\", \"user_name\": \"sofianar24\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/173850525?v=4\", \"provider_id\": \"173850525\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sofianar24\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:09:01.045762+00", + "updated_at": "2025-11-24 05:31:50.954793+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:09:01.053223+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 162, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "58871899-6d54-4cd5-bbd0-3d9e2cbe5f9f", + "aud": "authenticated", + "role": "authenticated", + "email": "azhararizkyrafi@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:03:57.311152+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:03:57.959607+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"69517308\", \"name\": \"Rizky Rafi Azhara\", \"email\": \"azhararizkyrafi@gmail.com\", \"full_name\": \"Rizky Rafi Azhara\", \"user_name\": \"rizkraf\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/69517308?v=4\", \"provider_id\": \"69517308\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rizkraf\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:03:57.304737+00", + "updated_at": "2025-11-23 14:03:57.961423+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:03:57.311152+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 163, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "58ced2da-dd5c-42da-acd5-0082b5e0e835", + "aud": "authenticated", + "role": "authenticated", + "email": "safuzi333@gmail.com", + "encrypted_password": "$2a$10$zOOhpY3T9WTU9LT1XgY8Fu311SuR42Tiij25ZAtrr/W2gVM4G.FNa", + "email_confirmed_at": "2025-11-24 01:11:09.863253+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 01:09:21.925822+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:12:08.827669+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"58ced2da-dd5c-42da-acd5-0082b5e0e835\", \"email\": \"safuzi333@gmail.com\", \"username\": \"fuzi\", \"display_name\": \"Z\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 01:09:21.852353+00", + "updated_at": "2025-11-24 01:12:08.882077+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:11:09.863253+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 164, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "59d3324c-a264-4f60-91ca-96d9d5def00a", + "aud": "authenticated", + "role": "authenticated", + "email": "putrasyaddad@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:01:45.940664+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:01:48.192665+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"89979969\", \"name\": \"Syaddad Raihan Putra\", \"email\": \"putrasyaddad@gmail.com\", \"full_name\": \"Syaddad Raihan Putra\", \"user_name\": \"SyaddadRaihanPutra\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/89979969?v=4\", \"provider_id\": \"89979969\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"SyaddadRaihanPutra\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:01:45.865505+00", + "updated_at": "2025-11-24 12:01:48.243775+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:01:45.940664+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 165, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5a48dc88-25c8-49e8-8a74-36b493584aa8", + "aud": "authenticated", + "role": "authenticated", + "email": "bryanfernandoks11@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:12:23.425837+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:12:25.125411+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"75253013\", \"name\": \"Bryan Fernando Kurniawan Suhartono\", \"email\": \"bryanfernandoks11@gmail.com\", \"full_name\": \"Bryan Fernando Kurniawan Suhartono\", \"user_name\": \"bryanfks-dev\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/75253013?v=4\", \"provider_id\": \"75253013\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"bryanfks-dev\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:12:23.387328+00", + "updated_at": "2025-11-24 13:12:25.140914+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:12:23.425837+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 166, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5a8cf51a-fa8a-44ce-ad1a-898c8487513f", + "aud": "authenticated", + "role": "authenticated", + "email": "saehansa@gmail.com", + "encrypted_password": "$2a$10$T2e.aGhdFanu5Or/4HmWoOgpzqwZMpUcb8GLjFg4AmzOk7ljZg4ui", + "email_confirmed_at": "2025-11-23 13:21:14.483323+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:20:37.468761+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:21:22.010079+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"5a8cf51a-fa8a-44ce-ad1a-898c8487513f\", \"email\": \"saehansa@gmail.com\", \"username\": \"robert\", \"display_name\": \"Hansa\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:20:37.462867+00", + "updated_at": "2025-11-23 13:21:22.011743+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:21:14.483323+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 167, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5ab3bd8c-27a2-4552-8f0c-98370dff4e3b", + "aud": "authenticated", + "role": "authenticated", + "email": "kontakpribadiatsushi@gmail.com", + "encrypted_password": "$2a$10$ys58mhUV/2SgO8BtH7/trO8JdcV9g2eQjH/vsZKOSrVh1Q0MyscOe", + "email_confirmed_at": "2025-11-23 15:38:31.554296+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:38:18.685736+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:38:45.643664+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"5ab3bd8c-27a2-4552-8f0c-98370dff4e3b\", \"email\": \"kontakpribadiatsushi@gmail.com\", \"username\": \"loid\", \"display_name\": \"Loiddev\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:38:18.680732+00", + "updated_at": "2025-11-23 15:38:45.64592+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:38:31.554296+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 168, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5c15338b-c4a0-4071-ab67-c8f29ffaadaa", + "aud": "authenticated", + "role": "authenticated", + "email": "mohkaisanalkalbi@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:46:34.136803+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:24:23.068875+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"187771486\", \"email\": \"mohkaisanalkalbi@gmail.com\", \"user_name\": \"kaizoworkshop\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/187771486?v=4\", \"provider_id\": \"187771486\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"kaizoworkshop\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:46:34.128465+00", + "updated_at": "2025-11-24 15:22:28.547141+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:46:34.136803+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 169, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5dc2beb9-46c1-4920-9d07-9708de896778", + "aud": "authenticated", + "role": "authenticated", + "email": "bayuardana213@gmail.com", + "encrypted_password": "$2a$10$NAm.c.9c.irjCldANobi3Ow6kiy52Y5H8/gU.7riC0gTI0LIN5uYu", + "email_confirmed_at": "2025-11-23 13:47:46.092092+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:47:25.637043+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:47:59.824093+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"5dc2beb9-46c1-4920-9d07-9708de896778\", \"email\": \"bayuardana213@gmail.com\", \"username\": \"itsbayy\", \"display_name\": \"Bayu\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:47:25.628791+00", + "updated_at": "2025-11-23 13:47:59.825894+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:47:46.092092+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 170, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5e0d9e2e-5ced-4f94-9797-b8083778fe0e", + "aud": "authenticated", + "role": "authenticated", + "email": "danufebriansyah09@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:40:42.97256+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:40:44.58721+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"100523466\", \"name\": \"Danu Febriansyah\", \"email\": \"danufebriansyah09@gmail.com\", \"full_name\": \"Danu Febriansyah\", \"user_name\": \"danufflesmana\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/100523466?v=4\", \"provider_id\": \"100523466\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"danufflesmana\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:40:42.967249+00", + "updated_at": "2025-11-23 17:13:25.232378+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:40:42.97256+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 171, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5e91489c-cacf-4050-b46b-4327255ec74a", + "aud": "authenticated", + "role": "authenticated", + "email": "pjuanda12@gmail.com", + "encrypted_password": "$2a$10$vAtUh8U.JKUOovP9IuLCs.Kwl6yhe6GN.LBYyaxRCN2izWr16/0dW", + "email_confirmed_at": "2025-11-23 15:18:30.666345+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:18:02.574564+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:47:38.339484+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"5e91489c-cacf-4050-b46b-4327255ec74a\", \"email\": \"pjuanda12@gmail.com\", \"username\": \"misdirec12\", \"display_name\": \"Juanda\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:18:02.56954+00", + "updated_at": "2025-11-24 16:32:05.984618+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:18:30.666345+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 172, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5ee5672c-dba1-42b7-b8f9-e76ba4efd21a", + "aud": "authenticated", + "role": "authenticated", + "email": "muzammilulmuttaqin11@gmail.com", + "encrypted_password": "$2a$10$JTN6.rMgBLqJC/z6kZ0m9OI9D9BKqo2MDfZW9ZCW15/b8ZKF4sIhy", + "email_confirmed_at": "2025-11-24 03:51:35.533275+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:50:30.277267+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:51:43.919203+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"5ee5672c-dba1-42b7-b8f9-e76ba4efd21a\", \"email\": \"muzammilulmuttaqin11@gmail.com\", \"username\": \"muzam\", \"display_name\": \"Muzam\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:50:30.269095+00", + "updated_at": "2025-11-24 03:51:43.931905+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:51:35.533275+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 173, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5f46ecdb-f025-4fc6-a981-dd4c4c93a52a", + "aud": "authenticated", + "role": "authenticated", + "email": "raffida2013@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:58:43.393299+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:58:44.559222+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"147705772\", \"name\": \"Raffi Deas Alvaro\", \"email\": \"raffida2013@gmail.com\", \"full_name\": \"Raffi Deas Alvaro\", \"user_name\": \"Justdaz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/147705772?v=4\", \"provider_id\": \"147705772\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Justdaz\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:58:43.381493+00", + "updated_at": "2025-11-24 03:58:44.56467+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:58:43.393299+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 174, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5f475128-017f-4021-961c-4d58eef63d99", + "aud": "authenticated", + "role": "authenticated", + "email": "markusdamar2958@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:24:55.855505+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:24:57.303534+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"152692473\", \"name\": \"Damar\", \"email\": \"markusdamar2958@gmail.com\", \"full_name\": \"Damar\", \"user_name\": \"Defami\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/152692473?v=4\", \"provider_id\": \"152692473\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Defami\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:24:55.84933+00", + "updated_at": "2025-11-23 17:19:47.337947+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:24:55.855505+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 175, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5fb48143-4d2c-4d71-bf9a-bd9f44647de6", + "aud": "authenticated", + "role": "authenticated", + "email": "felixcyro008@gmail.com", + "encrypted_password": "$2a$10$IFAA/d9Ea2uvlJqXLielb.JgLQyqWr7zS9brX9UQGDtXqywWzfPOO", + "email_confirmed_at": "2025-11-23 13:22:59.452441+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:22:44.073707+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:23:20.635892+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"5fb48143-4d2c-4d71-bf9a-bd9f44647de6\", \"email\": \"felixcyro008@gmail.com\", \"username\": \"malasngoding\", \"display_name\": \"malasngoding\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:22:44.06331+00", + "updated_at": "2025-11-23 13:23:20.637582+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:22:59.452441+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 176, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "5fecab2f-2382-404e-8f8f-ed031332b886", + "aud": "authenticated", + "role": "authenticated", + "email": "hazelbigbosshazel@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:24:58.857841+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:24:59.76952+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"157968719\", \"email\": \"hazelbigbosshazel@gmail.com\", \"user_name\": \"AJEEJEL\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/157968719?v=4\", \"provider_id\": \"157968719\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AJEEJEL\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:24:58.834651+00", + "updated_at": "2025-11-23 15:24:59.78589+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:24:58.857841+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 177, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "60fbc970-2079-42c8-8dcb-637c466a7f1c", + "aud": "authenticated", + "role": "authenticated", + "email": "mhd.rijal203@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:55:47.382507+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:55:48.475122+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"45933947\", \"name\": \"Muhamad Rijal\", \"email\": \"mhd.rijal203@gmail.com\", \"full_name\": \"Muhamad Rijal\", \"user_name\": \"euxzy\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/45933947?v=4\", \"provider_id\": \"45933947\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"euxzy\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:55:47.373093+00", + "updated_at": "2025-11-24 12:55:48.480723+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:55:47.382507+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 178, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "61c5d3a0-553f-474d-9950-483cb86057df", + "aud": "authenticated", + "role": "authenticated", + "email": "imovic004@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:41:58.283062+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:41:59.083178+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"136174574\", \"name\": \"movic\", \"email\": \"imovic004@gmail.com\", \"full_name\": \"movic\", \"user_name\": \"mov1cc\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/136174574?v=4\", \"provider_id\": \"136174574\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mov1cc\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:41:58.276398+00", + "updated_at": "2025-11-24 05:41:59.088397+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:41:58.283062+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 179, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "625aa73b-69db-473f-baad-6791ff865e40", + "aud": "authenticated", + "role": "authenticated", + "email": "samuelmarubamanik@gmail.com", + "encrypted_password": "$2a$10$CVUjR4VB7mtz2AHY6U1n2uqvtvsj0gn.q0uLpB.s3XgTp.hja2dCa", + "email_confirmed_at": "2025-11-24 06:40:27.261042+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 06:39:28.071194+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:40:52.829661+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"625aa73b-69db-473f-baad-6791ff865e40\", \"email\": \"samuelmarubamanik@gmail.com\", \"username\": \"samuelmaruba\", \"display_name\": \"Redfly\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 06:39:28.064123+00", + "updated_at": "2025-11-24 06:40:52.831447+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:40:27.261042+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 180, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "63a19768-b9c4-480d-95c5-2770393935fd", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammad.fahri137296@smp.belajar.id", + "encrypted_password": "$2a$10$rqvY1lZ/.YZux.zQ4tVxZOfV2GgPcexdTQabmdQGDd2xJWStCN4p2", + "email_confirmed_at": "2025-11-24 03:53:45.037346+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:53:24.234419+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:54:36.262704+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"63a19768-b9c4-480d-95c5-2770393935fd\", \"email\": \"muhammad.fahri137296@smp.belajar.id\", \"username\": \"fahriryy_\", \"display_name\": \"Jvstryy\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:53:24.213743+00", + "updated_at": "2025-11-24 03:54:36.264635+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:53:45.037346+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 181, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "63a87b68-4dc0-41c8-a99a-1335c77dd4e0", + "aud": "authenticated", + "role": "authenticated", + "email": "me@anym.dev", + "encrypted_password": "$2a$10$QABcaarIEWyJNkthvzyRR./BkUGnaWY5d8fEyQiN6PwC9KszT2Mx.", + "email_confirmed_at": "2025-11-23 13:52:40.578751+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:51:32.587788+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:53:05.012593+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"63a87b68-4dc0-41c8-a99a-1335c77dd4e0\", \"email\": \"me@anym.dev\", \"username\": \"anym\", \"display_name\": \"anym\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:51:32.575238+00", + "updated_at": "2025-11-23 22:25:20.62118+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:52:40.578751+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 182, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "64428bf7-052f-4b7b-95ca-802f76e93dcc", + "aud": "authenticated", + "role": "authenticated", + "email": "kithly19@gmail.com", + "encrypted_password": "$2a$10$yL56k7R43O0U3bQK.lxLc.XjEY2VuAC80YlDDDui8oz/5enmNQ8qS", + "email_confirmed_at": "2025-11-23 14:38:38.861323+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:38:09.286382+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:27:50.702057+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"64428bf7-052f-4b7b-95ca-802f76e93dcc\", \"email\": \"kithly19@gmail.com\", \"username\": \"kithly\", \"display_name\": \"kithly19\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:38:09.281439+00", + "updated_at": "2025-11-24 11:27:50.707473+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:38:38.861323+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 183, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "645e0a22-a055-4cba-a007-37bd9791f882", + "aud": "authenticated", + "role": "authenticated", + "email": "raissatristan14@gmail.com", + "encrypted_password": "$2a$10$wViaXngxDOixo7QuwM0sSuqQ9O.LuVqHGEwITYZ1tqS7JTxlouMKe", + "email_confirmed_at": "2025-11-24 06:15:49.295258+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 06:15:32.164049+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:16:11.054148+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"645e0a22-a055-4cba-a007-37bd9791f882\", \"email\": \"raissatristan14@gmail.com\", \"username\": \"bluekiko\", \"display_name\": \"Tristan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 06:15:32.105657+00", + "updated_at": "2025-11-24 12:12:53.296352+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:15:49.295258+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 184, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "653f2a62-66c5-4eae-a7c5-822a85cd2d9b", + "aud": "authenticated", + "role": "authenticated", + "email": "fairuzfuadi123@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:12:39.331523+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:12:40.883395+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"210304418\", \"email\": \"fairuzfuadi123@gmail.com\", \"user_name\": \"Cuppayyuz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/210304418?v=4\", \"provider_id\": \"210304418\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Cuppayyuz\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:12:39.324978+00", + "updated_at": "2025-11-24 18:14:14.599202+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:12:39.331523+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 185, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "65d6021e-a03c-4661-a3eb-5452cc89b588", + "aud": "authenticated", + "role": "authenticated", + "email": "ahdan.abde@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 15:01:15.265999+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 15:31:48.432912+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"110811488\", \"name\": \"Ahdan Abde Rifai\", \"email\": \"ahdan.abde@gmail.com\", \"full_name\": \"Ahdan Abde Rifai\", \"user_name\": \"ahdan09\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/110811488?v=4\", \"provider_id\": \"110811488\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ahdan09\"}", + "is_super_admin": null, + "created_at": "2025-11-24 15:01:15.255656+00", + "updated_at": "2025-11-24 16:18:30.341717+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 15:01:15.265999+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 186, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "65d79307-2b78-48af-a9d8-750e66126401", + "aud": "authenticated", + "role": "authenticated", + "email": "ivanrahmat.p77@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:40:19.025903+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:53:50.793033+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"145700471\", \"name\": \"Ivan Rahmat Prakasa\", \"email\": \"ivanrahmat.p77@gmail.com\", \"full_name\": \"Ivan Rahmat Prakasa\", \"user_name\": \"Ivanrhmt77\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/145700471?v=4\", \"provider_id\": \"145700471\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Ivanrhmt77\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:40:19.020357+00", + "updated_at": "2025-11-24 16:15:56.308849+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:40:19.025903+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 187, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "65efcb5a-13e3-4552-9336-f7b68705e521", + "aud": "authenticated", + "role": "authenticated", + "email": "hamzahbaik9@gmail.com", + "encrypted_password": "$2a$10$ZMzYxCkAD7b09fB6D6hiruhMm0TWCwmxVmb/EVMOAWYDHfgpiSElq", + "email_confirmed_at": "2025-11-24 03:01:06.017428+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:00:45.806245+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:50:39.415802+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"65efcb5a-13e3-4552-9336-f7b68705e521\", \"email\": \"hamzahbaik9@gmail.com\", \"username\": \"muhamadhamzah\", \"display_name\": \"muhamad hamzah\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:00:45.800672+00", + "updated_at": "2025-11-24 13:50:39.46749+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:01:06.017428+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 188, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6677b5ae-3171-428d-aa61-22464b1ba80f", + "aud": "authenticated", + "role": "authenticated", + "email": "andrianxyz82@gmail.com", + "encrypted_password": "$2a$10$r0lq9nx1HmQfwjkooL2V6e1DAb800KazdeEXlegh8rQMg1f7yln6m", + "email_confirmed_at": "2025-11-24 04:24:24.029331+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:24:00.365524+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:35:00.694206+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"6677b5ae-3171-428d-aa61-22464b1ba80f\", \"email\": \"andrianxyz82@gmail.com\", \"username\": \"amelia99\", \"display_name\": \"Amelia\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:24:00.350247+00", + "updated_at": "2025-11-24 11:20:33.169153+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:24:24.029331+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 189, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "66dbdf3d-3cf0-4d81-810e-185e61b952b7", + "aud": "authenticated", + "role": "authenticated", + "email": "billysyahputra630@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:19:01.029591+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:19:12.966929+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"228985105\", \"name\": \"Billy\", \"email\": \"billysyahputra630@gmail.com\", \"full_name\": \"Billy\", \"user_name\": \"scynide645\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/228985105?v=4\", \"provider_id\": \"228985105\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"scynide645\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:19:01.020731+00", + "updated_at": "2025-11-23 13:19:12.968699+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:19:01.029591+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 190, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6773b841-2037-4aee-ace1-a8bea7341e25", + "aud": "authenticated", + "role": "authenticated", + "email": "yusri.irfani@gmail.com", + "encrypted_password": "$2a$10$Fa8Uyp6PCgqRLcoFgAmYbeusjqWYvum5tWl069Xb89FyhKaPqcorW", + "email_confirmed_at": "2025-11-23 15:25:40.568128+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:25:08.562486+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:25:54.517434+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"6773b841-2037-4aee-ace1-a8bea7341e25\", \"email\": \"yusri.irfani@gmail.com\", \"username\": \"yuzplay\", \"display_name\": \"yusri irfani\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:25:08.554361+00", + "updated_at": "2025-11-23 15:25:54.519337+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:25:40.568128+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 191, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "68876807-64ed-49f9-91d4-d7f68eb0e6c9", + "aud": "authenticated", + "role": "authenticated", + "email": "reiyhan.aditya@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:52:27.639929+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:52:28.605017+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"64010793\", \"name\": \"Rey Panda\", \"email\": \"reiyhan.aditya@gmail.com\", \"full_name\": \"Rey Panda\", \"user_name\": \"gingantic\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/64010793?v=4\", \"provider_id\": \"64010793\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"gingantic\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:52:27.630694+00", + "updated_at": "2025-11-24 05:39:04.788735+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:52:27.639929+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 192, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "689872ad-856d-40f6-9d87-86d580394fb4", + "aud": "authenticated", + "role": "authenticated", + "email": "hexorzplay@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:06:00.586862+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:06:02.040277+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"107131696\", \"email\": \"hexorzplay@gmail.com\", \"user_name\": \"HexorzCode\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/107131696?v=4\", \"provider_id\": \"107131696\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"HexorzCode\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:06:00.579327+00", + "updated_at": "2025-11-24 06:06:02.042083+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:06:00.586862+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 193, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "699646d9-192a-451f-99d1-46d4a42e4eec", + "aud": "authenticated", + "role": "authenticated", + "email": "codewithwan@gmail.com", + "encrypted_password": "$2a$10$hOmQAdtJPRTCT0.DT0HkuOBbmgQ/vhm9a9T.DU.cEFgGbKZvezL.u", + "email_confirmed_at": "2025-11-23 14:56:00.586308+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:55:28.082185+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:24:45.273708+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"699646d9-192a-451f-99d1-46d4a42e4eec\", \"email\": \"codewithwan@gmail.com\", \"username\": \"wanjay\", \"display_name\": \"codewithwan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:55:28.076467+00", + "updated_at": "2025-11-24 13:24:45.277564+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:56:00.586308+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 194, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6a9264f2-2731-4e4a-8e29-9fc1a505e6dc", + "aud": "authenticated", + "role": "authenticated", + "email": "mtaufiksaadi28@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:30:26.900481+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:30:29.563735+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"245698412\", \"email\": \"mtaufiksaadi28@gmail.com\", \"user_name\": \"mtaufiksaadi28\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/245698412?v=4\", \"provider_id\": \"245698412\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mtaufiksaadi28\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:30:26.892941+00", + "updated_at": "2025-11-23 13:30:29.567158+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:30:26.900481+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 195, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6ab9934d-8f77-4e32-b4db-d09222fa4e44", + "aud": "authenticated", + "role": "authenticated", + "email": "alamsantoso.12@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:33:12.989489+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:33:14.767435+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"76246974\", \"name\": \"Emowmow\", \"email\": \"alamsantoso.12@gmail.com\", \"full_name\": \"Emowmow\", \"user_name\": \"emowbaik\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/76246974?v=4\", \"provider_id\": \"76246974\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"emowbaik\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:33:12.98438+00", + "updated_at": "2025-11-23 13:33:14.769292+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:33:12.989489+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 196, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6ae98213-5e3a-41c7-b356-03ae6760993d", + "aud": "authenticated", + "role": "authenticated", + "email": "kunengrestu@gmail.com", + "encrypted_password": "$2a$10$XmVPQtjfJgtqud8nIbmEKe5xUNMr98o4tD31m3.wUiDBc2w8ektYW", + "email_confirmed_at": "2025-11-23 14:07:40.276601+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:07:07.582203+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:08:12.601151+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"6ae98213-5e3a-41c7-b356-03ae6760993d\", \"email\": \"kunengrestu@gmail.com\", \"username\": \"redzero\", \"display_name\": \"You can see\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:07:07.575192+00", + "updated_at": "2025-11-23 14:08:12.605538+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:07:40.276601+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 197, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6b62be2c-912d-4809-af64-08ff52aef4b8", + "aud": "authenticated", + "role": "authenticated", + "email": "andikacahargen2@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-10-14 16:59:30.578683+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-17 15:30:30.704287+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"55616872\", \"name\": \"Anka Tama\", \"email\": \"andikacahargen2@gmail.com\", \"full_name\": \"Anka Tama\", \"user_name\": \"xirf\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/55616872?v=4\", \"provider_id\": \"55616872\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"xirf\"}", + "is_super_admin": null, + "created_at": "2025-10-14 16:59:30.559097+00", + "updated_at": "2025-11-23 13:49:23.239568+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-10-14 16:59:30.578683+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 198, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6bab0fab-6c05-4ed5-9d4d-bbabaf62b513", + "aud": "authenticated", + "role": "authenticated", + "email": "rmz4mc7wg6@privaterelay.appleid.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 10:41:57.721197+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:41:58.476575+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"245849988\", \"email\": \"rmz4mc7wg6@privaterelay.appleid.com\", \"user_name\": \"rahmadjohan111\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/245849988?v=4\", \"provider_id\": \"245849988\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rahmadjohan111\"}", + "is_super_admin": null, + "created_at": "2025-11-24 10:41:57.713748+00", + "updated_at": "2025-11-24 10:41:58.489282+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 10:41:57.721197+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 199, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6bd01f53-7884-40a2-aeb4-34b000120088", + "aud": "authenticated", + "role": "authenticated", + "email": "handikacoco@gmail.com", + "encrypted_password": "$2a$10$fxgGl5vJP2QoM/KjvFhW4OavWpKQzE2CpaDETmLYYwRwkkhsTVw/2", + "email_confirmed_at": "2025-11-24 06:38:11.625508+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 06:37:28.841017+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:38:19.351783+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"6bd01f53-7884-40a2-aeb4-34b000120088\", \"email\": \"handikacoco@gmail.com\", \"username\": \"dika51\", \"display_name\": \"Handika Hidayat\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 06:37:28.8302+00", + "updated_at": "2025-11-24 08:27:11.391298+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:38:11.625508+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 200, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6d10db2d-3ac2-4008-90dd-141311219c53", + "aud": "authenticated", + "role": "authenticated", + "email": "riziqliliulilalbab@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:43:29.452316+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:43:30.343746+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"108043896\", \"name\": \"RIZIQ LILI ULIL ALBAB\", \"email\": \"riziqliliulilalbab@gmail.com\", \"full_name\": \"RIZIQ LILI ULIL ALBAB\", \"user_name\": \"riziqalbab\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/108043896?v=4\", \"provider_id\": \"108043896\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"riziqalbab\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:43:29.407627+00", + "updated_at": "2025-11-24 13:05:47.69246+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:43:29.452316+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 201, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6dd8c78b-9884-4944-b2d4-de2bb8711da6", + "aud": "authenticated", + "role": "authenticated", + "email": "syisahi4696@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:44:44.791149+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:44:46.87748+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"46312354\", \"email\": \"syisahi4696@gmail.com\", \"user_name\": \"syisahi12\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/46312354?v=4\", \"provider_id\": \"46312354\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"syisahi12\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:44:44.784198+00", + "updated_at": "2025-11-24 13:44:46.882828+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:44:44.791149+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 202, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6e32e4d3-25e7-47d5-97b5-60955969e22f", + "aud": "authenticated", + "role": "authenticated", + "email": "akhmadwibu05@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-18 09:38:25.65449+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-18 09:51:38.374098+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"99156436\", \"name\": \"akhmadkhoirudin\", \"email\": \"akhmadwibu05@gmail.com\", \"full_name\": \"akhmadkhoirudin\", \"user_name\": \"AkhmadKhoirudin\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/99156436?v=4\", \"provider_id\": \"99156436\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AkhmadKhoirudin\"}", + "is_super_admin": null, + "created_at": "2025-11-18 09:38:25.64703+00", + "updated_at": "2025-11-18 09:51:38.376458+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-18 09:38:25.65449+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 203, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6eae5e60-544e-4bf2-81af-7b1138ae967a", + "aud": "authenticated", + "role": "authenticated", + "email": "andika.namikaze02@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:40:11.388157+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:40:12.560164+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"225810096\", \"name\": \"Andika Fitra Darmawan\", \"email\": \"andika.namikaze02@gmail.com\", \"full_name\": \"Andika Fitra Darmawan\", \"user_name\": \"AndikaFitra\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/225810096?v=4\", \"provider_id\": \"225810096\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AndikaFitra\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:40:11.381142+00", + "updated_at": "2025-11-24 17:58:35.317219+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:40:11.388157+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 204, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6eb155d0-aea1-41ca-bcdf-7effa9912366", + "aud": "authenticated", + "role": "authenticated", + "email": "luhalisarafansyah@gmail.com", + "encrypted_password": "$2a$10$.2F4ukiPMpn6REW8abTSbu6soS4u.QUcyDyBygS7/TsT5s8FZiqNG", + "email_confirmed_at": "2025-11-23 22:25:03.545122+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 22:23:55.991907+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 22:25:11.701964+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"6eb155d0-aea1-41ca-bcdf-7effa9912366\", \"email\": \"luhalisarafansyah@gmail.com\", \"username\": \"alha\", \"display_name\": \"Rafiq Al-Hariri Andriansyah\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 22:23:55.970845+00", + "updated_at": "2025-11-24 14:15:35.340315+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 22:25:03.545122+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 205, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6ebfa0ad-fde4-42f9-9d0f-8e51e465d534", + "aud": "authenticated", + "role": "authenticated", + "email": "novianybl@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:20:47.624626+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:20:48.333448+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"127640081\", \"name\": \"Novian Project\", \"email\": \"novianybl@gmail.com\", \"full_name\": \"Novian Project\", \"user_name\": \"novian-project\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/127640081?v=4\", \"provider_id\": \"127640081\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"novian-project\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:20:47.615454+00", + "updated_at": "2025-11-24 06:20:48.338704+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:20:47.624626+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 206, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6f089bd4-8829-4a62-8c06-104319116e93", + "aud": "authenticated", + "role": "authenticated", + "email": "boostlivious@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:28:01.436714+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:28:14.268802+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"81167258\", \"name\": \"Raynaldi Siahaan\", \"email\": \"boostlivious@gmail.com\", \"full_name\": \"Raynaldi Siahaan\", \"user_name\": \"RaynaldiSiahaan\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/81167258?v=4\", \"provider_id\": \"81167258\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"RaynaldiSiahaan\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:28:01.430857+00", + "updated_at": "2025-11-23 13:28:14.27051+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:28:01.436714+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 207, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6f237adc-f724-424c-baf1-4d13f03887e1", + "aud": "authenticated", + "role": "authenticated", + "email": "rasyadbimasatya04@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:13:29.471572+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:13:32.393994+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"113656104\", \"name\": \"Rasyad Bimasatya\", \"email\": \"rasyadbimasatya04@gmail.com\", \"full_name\": \"Rasyad Bimasatya\", \"user_name\": \"RasyadBima15\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/113656104?v=4\", \"provider_id\": \"113656104\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"RasyadBima15\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:13:29.460361+00", + "updated_at": "2025-11-24 11:27:04.117006+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:13:29.471572+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 208, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6f43758c-224e-4d9d-9273-f3a3df51a11c", + "aud": "authenticated", + "role": "authenticated", + "email": "rezyaindisaputra@gmail.com", + "encrypted_password": "$2a$10$iNhOWaVLtn68Bx.QEAOcf.mG1UvVTP.ZG03JV3Me0MHY4aL5fTNGa", + "email_confirmed_at": "2025-11-24 06:35:48.598948+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 06:35:24.834029+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:35:57.829328+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"6f43758c-224e-4d9d-9273-f3a3df51a11c\", \"email\": \"rezyaindisaputra@gmail.com\", \"username\": \"blank_mc\", \"display_name\": \"Blank\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 06:35:24.821621+00", + "updated_at": "2025-11-24 08:29:27.007883+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:35:48.598948+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 209, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6f8a13c1-3836-4715-9181-dc21314cd8af", + "aud": "authenticated", + "role": "authenticated", + "email": "rahardisalim23@gmail.com", + "encrypted_password": "$2a$10$CQKOSuzlWA9JYNT3hQqoWeuUaeRpU4DPRY8tKXsUbZ3eFfHkCbLfm", + "email_confirmed_at": "2025-11-23 16:51:53.414703+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:51:35.12845+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:51:59.021487+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"6f8a13c1-3836-4715-9181-dc21314cd8af\", \"email\": \"rahardisalim23@gmail.com\", \"username\": \"rahardisalim\", \"display_name\": \"Vyuura\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:51:35.123034+00", + "updated_at": "2025-11-23 16:51:59.056076+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:51:53.414703+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 210, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "6f974b20-6309-4b44-9c7c-165d4cb458c9", + "aud": "authenticated", + "role": "authenticated", + "email": "alfin.rozzaq.270206@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:36:33.021757+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:36:33.882687+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"177926848\", \"name\": \"Alfin Rozzaq Nirwana\", \"email\": \"alfin.rozzaq.270206@gmail.com\", \"full_name\": \"Alfin Rozzaq Nirwana\", \"user_name\": \"Algaray02\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/177926848?v=4\", \"provider_id\": \"177926848\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Algaray02\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:36:33.007757+00", + "updated_at": "2025-11-24 07:59:24.043537+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:36:33.021757+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 211, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7055961a-7b40-49d9-ace2-6ce7ad48f14d", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammad.toffazal00@gmail.com", + "encrypted_password": "$2a$10$BThh8rCcZE15qw5ehc4YheyttHdeU0EIt28/aVoxv4Zz40gO/dVPe", + "email_confirmed_at": "2025-11-23 13:36:42.061735+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:35:57.943825+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:37:01.269271+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"7055961a-7b40-49d9-ace2-6ce7ad48f14d\", \"email\": \"muhammad.toffazal00@gmail.com\", \"username\": \"toffazal\", \"display_name\": \"Fazal\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:35:57.938895+00", + "updated_at": "2025-11-24 10:32:59.170883+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:36:42.061735+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 212, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "706b67c2-e410-4143-a7fa-213d35178db4", + "aud": "authenticated", + "role": "authenticated", + "email": "raaflynr@gmail.com", + "encrypted_password": "$2a$10$tj6ztJ0icjv2P.xl5WnZleDcjUgzStwm5w8X2kMD5C4x02P7o.edW", + "email_confirmed_at": "2025-11-23 14:24:32.422406+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:24:12.858582+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:24:37.56137+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"706b67c2-e410-4143-a7fa-213d35178db4\", \"email\": \"raaflynr@gmail.com\", \"username\": \"vanothic\", \"display_name\": \"rAvly\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:24:12.850307+00", + "updated_at": "2025-11-24 12:23:52.972433+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:24:32.422406+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 213, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7216ca14-7cff-4d0b-b8c9-70427af21b4a", + "aud": "authenticated", + "role": "authenticated", + "email": "kujouarisu@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 14:03:49.162687+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:03:50.071178+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"233652888\", \"email\": \"kujouarisu@gmail.com\", \"user_name\": \"DitoOkviansyah\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/233652888?v=4\", \"provider_id\": \"233652888\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"DitoOkviansyah\"}", + "is_super_admin": null, + "created_at": "2025-11-24 14:03:49.13347+00", + "updated_at": "2025-11-24 14:03:50.083537+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 14:03:49.162687+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 214, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "722989b5-f685-4fc3-9bc7-76f04c479d49", + "aud": "authenticated", + "role": "authenticated", + "email": "rohimsaga7@gmail.com", + "encrypted_password": "$2a$10$jRhNkEVqYzZDpzi5FkP5R.bIRH4m6hSQ8sfZnM9ebV48vU7pmxjeG", + "email_confirmed_at": "2025-11-24 09:56:16.245435+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 09:55:50.558511+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:56:23.630049+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"722989b5-f685-4fc3-9bc7-76f04c479d49\", \"email\": \"rohimsaga7@gmail.com\", \"username\": \"rohimdev\", \"display_name\": \"rohimdev\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 09:55:50.526057+00", + "updated_at": "2025-11-24 16:54:31.920794+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 09:56:16.245435+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 215, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "72bf1d04-8b95-4f90-a88f-f78c0571d841", + "aud": "authenticated", + "role": "authenticated", + "email": "rayhanlubis01@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:18:19.91894+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:22:18.041498+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"214372664\", \"name\": \"Rayhan Lubis\", \"email\": \"rayhanlubis01@gmail.com\", \"full_name\": \"Rayhan Lubis\", \"user_name\": \"cryptzoa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/214372664?v=4\", \"provider_id\": \"214372664\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"cryptzoa\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:18:19.907023+00", + "updated_at": "2025-11-23 16:22:18.044112+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:18:19.91894+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 216, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "73404aea-a007-4629-b9dc-fb26cb307e57", + "aud": "authenticated", + "role": "authenticated", + "email": "raflyirham1005@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:36:15.358489+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:36:15.955116+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"88644864\", \"name\": \"Rafly Irham Safatulloh\", \"email\": \"raflyirham1005@gmail.com\", \"full_name\": \"Rafly Irham Safatulloh\", \"user_name\": \"raflyirham\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/88644864?v=4\", \"provider_id\": \"88644864\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"raflyirham\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:36:15.352096+00", + "updated_at": "2025-11-23 14:40:34.62093+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:36:15.358489+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 217, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7364d4fa-f6f7-429f-a95d-f6775eca6d9f", + "aud": "authenticated", + "role": "authenticated", + "email": "sopiadi2006@gmail.com", + "encrypted_password": "$2a$10$WBe3R6Tqzui8WvRtxPesR.n/piWSydi7GR3VhKVnutHNfjB4M9bk.", + "email_confirmed_at": "2025-11-24 03:42:18.770633+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:41:31.318975+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:43:44.126875+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"7364d4fa-f6f7-429f-a95d-f6775eca6d9f\", \"email\": \"sopiadi2006@gmail.com\", \"username\": \"sopiadi\", \"display_name\": \"Sopiadi\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:41:31.312022+00", + "updated_at": "2025-11-24 05:59:04.904531+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:42:18.770633+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 218, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7462e4b2-b446-4562-9bc8-e08c07d157ef", + "aud": "authenticated", + "role": "authenticated", + "email": "haydar130305@gmail.com", + "encrypted_password": "$2a$10$9UGh21KA08ZoLriS4bbut.KQBDcXoLRv6DJsXoycTDBvw9GTbby4W", + "email_confirmed_at": "2025-11-23 14:45:57.206406+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:45:40.834939+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:46:56.749368+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"7462e4b2-b446-4562-9bc8-e08c07d157ef\", \"email\": \"haydar130305@gmail.com\", \"username\": \"haydar\", \"display_name\": \"Mashay\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:45:40.824844+00", + "updated_at": "2025-11-24 11:46:56.765917+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:45:57.206406+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 219, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "748de15d-374a-4756-89e2-75754e90542f", + "aud": "authenticated", + "role": "authenticated", + "email": "arilindra21@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:25:57.411486+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:26:00.050973+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"46191697\", \"name\": \"Moch. Aril Indra Permana\", \"email\": \"arilindra21@gmail.com\", \"full_name\": \"Moch. Aril Indra Permana\", \"user_name\": \"mocharil\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/46191697?v=4\", \"provider_id\": \"46191697\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mocharil\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:25:57.404477+00", + "updated_at": "2025-11-24 15:44:56.969514+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:25:57.411486+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 220, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "74bd7b16-a75a-4ffd-908d-0b00f6ced98b", + "aud": "authenticated", + "role": "authenticated", + "email": "gundowijoyo7@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:44:43.289131+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:44:44.2775+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"188554971\", \"name\": \"bahaywuj\", \"email\": \"gundowijoyo7@gmail.com\", \"full_name\": \"bahaywuj\", \"user_name\": \"gsntechgun\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/188554971?v=4\", \"provider_id\": \"188554971\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"gsntechgun\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:44:43.262213+00", + "updated_at": "2025-11-23 17:39:35.932511+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:44:43.289131+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 221, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "74f39d03-eb00-4a6c-81fe-f2d3d2f60cf3", + "aud": "authenticated", + "role": "authenticated", + "email": "yayohajid@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:29:49.466439+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:29:50.582595+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"182052247\", \"email\": \"yayohajid@gmail.com\", \"user_name\": \"Precise1312\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/182052247?v=4\", \"provider_id\": \"182052247\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Precise1312\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:29:49.456577+00", + "updated_at": "2025-11-24 07:05:20.342476+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:29:49.466439+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 222, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "757980ed-43fe-4092-9d2b-387e86c5b596", + "aud": "authenticated", + "role": "authenticated", + "email": "codesphere01010@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:47:37.650952+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:32:59.173749+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"112155072\", \"name\": \"Dzarel Developer \", \"email\": \"codesphere01010@gmail.com\", \"full_name\": \"Dzarel Developer \", \"user_name\": \"DzarelDeveloper\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/112155072?v=4\", \"provider_id\": \"112155072\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"DzarelDeveloper\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:47:37.644885+00", + "updated_at": "2025-11-24 11:32:59.220301+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:47:37.650952+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 223, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "763244a7-0bc5-4668-811f-4e20ae8825bb", + "aud": "authenticated", + "role": "authenticated", + "email": "stefanuslay01@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:27:56.207123+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:27:56.997768+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"55581510\", \"name\": \"Stefanus Lay\", \"email\": \"stefanuslay01@gmail.com\", \"full_name\": \"Stefanus Lay\", \"user_name\": \"StivenLay\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/55581510?v=4\", \"provider_id\": \"55581510\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"StivenLay\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:27:56.196012+00", + "updated_at": "2025-11-24 11:27:57.0009+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:27:56.207123+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 224, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "76c148f1-fef9-4489-8421-1cb875d7747f", + "aud": "authenticated", + "role": "authenticated", + "email": "fawfawfaw994@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:02:17.53131+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:06:02.43273+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"121663749\", \"email\": \"fawfawfaw994@gmail.com\", \"user_name\": \"mamato00\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/121663749?v=4\", \"provider_id\": \"121663749\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mamato00\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:02:17.496251+00", + "updated_at": "2025-11-23 17:06:45.725134+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:02:17.53131+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 225, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "76da63db-4937-44f4-bd7b-2673db6b7c40", + "aud": "authenticated", + "role": "authenticated", + "email": "resa.rahman@gmail.com", + "encrypted_password": "$2a$10$sWMDYM/bkB16B9swOVwHOe3S6XwigCk1MPRGGTXFb1hunqHR17R6G", + "email_confirmed_at": "2025-11-24 00:48:01.393734+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 00:47:41.333818+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 00:48:12.80652+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"76da63db-4937-44f4-bd7b-2673db6b7c40\", \"email\": \"resa.rahman@gmail.com\", \"username\": \"resarahman\", \"display_name\": \"resa rahman\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 00:47:41.320042+00", + "updated_at": "2025-11-24 01:46:52.928571+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:48:01.393734+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 226, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "76e6cd37-478a-45f7-ac57-81ff1b646761", + "aud": "authenticated", + "role": "authenticated", + "email": "bryann.carls@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 17:12:29.470483+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 17:12:30.273979+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"201248371\", \"email\": \"bryann.carls@gmail.com\", \"user_name\": \"ibayers\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/201248371?v=4\", \"provider_id\": \"201248371\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ibayers\"}", + "is_super_admin": null, + "created_at": "2025-11-23 17:12:29.438154+00", + "updated_at": "2025-11-23 17:12:30.287564+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 17:12:29.470483+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 227, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "786820eb-eccf-4c57-b05a-9cc4249672c4", + "aud": "authenticated", + "role": "authenticated", + "email": "m.saidibjm4@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:12:18.719449+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:12:19.769283+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"149281395\", \"name\": \"Muhammad Saidi\", \"email\": \"m.saidibjm4@gmail.com\", \"full_name\": \"Muhammad Saidi\", \"user_name\": \"luputer\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/149281395?v=4\", \"provider_id\": \"149281395\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"luputer\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:12:18.711697+00", + "updated_at": "2025-11-24 11:12:19.771625+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:12:18.719449+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 228, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "78d09810-d778-46e4-a69a-c055ebc29998", + "aud": "authenticated", + "role": "authenticated", + "email": "securtydit@gmail.com", + "encrypted_password": "$2a$10$Ou42s/UC/nksoCun.3IEP.fRUNyhfdVNypQayN0BlenPIsqLQIWBa", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "93d637bf674475899e3145b65506df2b0a40087d3690500b6cd501a0", + "confirmation_sent_at": "2025-11-24 07:31:48.820768+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"78d09810-d778-46e4-a69a-c055ebc29998\", \"email\": \"securtydit@gmail.com\", \"username\": \"nanang\", \"display_name\": \"Wijaya\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 07:31:48.812083+00", + "updated_at": "2025-11-24 07:31:50.629971+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 229, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "793b5a30-f0c7-4dfe-afc8-0e85e7ccd49c", + "aud": "authenticated", + "role": "authenticated", + "email": "helmygarcia67@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:32:21.463709+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:32:22.561488+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"148613373\", \"name\": \"Helmy \", \"email\": \"helmygarcia67@gmail.com\", \"full_name\": \"Helmy \", \"user_name\": \"Helmy0-0\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/148613373?v=4\", \"provider_id\": \"148613373\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Helmy0-0\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:32:21.457689+00", + "updated_at": "2025-11-23 13:32:22.563204+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:32:21.463709+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 230, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "793ce294-f69a-4aba-8259-f20ee2b4c73f", + "aud": "authenticated", + "role": "authenticated", + "email": "akbarriansyah339@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:49:43.610186+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:12:54.858372+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"119603477\", \"name\": \"Akbar Riansyah\", \"email\": \"akbarriansyah339@gmail.com\", \"full_name\": \"Akbar Riansyah\", \"user_name\": \"rynnxz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/119603477?v=4\", \"provider_id\": \"119603477\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rynnxz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:49:43.602754+00", + "updated_at": "2025-11-24 08:50:46.661733+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:49:43.610186+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 231, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "79c01c0b-4bff-43af-9ec9-d1fa29f3987b", + "aud": "authenticated", + "role": "authenticated", + "email": "revanza.firdaus@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:27:31.476725+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:27:32.323784+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"134130365\", \"name\": \"Muhammad Revanza Firdaus\", \"email\": \"revanza.firdaus@gmail.com\", \"full_name\": \"Muhammad Revanza Firdaus\", \"user_name\": \"Revanza1106\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/134130365?v=4\", \"provider_id\": \"134130365\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Revanza1106\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:27:31.467962+00", + "updated_at": "2025-11-24 01:27:32.327222+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:27:31.476725+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 232, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7a27e0da-9593-40a7-8462-9daf6e96e3ae", + "aud": "authenticated", + "role": "authenticated", + "email": "rezokushop@gmail.com", + "encrypted_password": "$2a$10$jsgTzjn7zUwUCkQgw24kGOuf3tIW.BR9NL5zAVqxW8HD.0C15WcDm", + "email_confirmed_at": "2025-11-23 15:22:02.312853+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:21:34.176863+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:22:15.593295+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"7a27e0da-9593-40a7-8462-9daf6e96e3ae\", \"email\": \"rezokushop@gmail.com\", \"username\": \"rezoku\", \"display_name\": \"M. Rohid Rivaldi\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:21:34.172064+00", + "updated_at": "2025-11-23 15:22:15.595099+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:22:02.312853+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 233, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7a960082-4df8-45fd-99fa-a204d6688caa", + "aud": "authenticated", + "role": "authenticated", + "email": "aril.permana@paper.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:53:15.175354+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:53:15.984587+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"141698279\", \"email\": \"aril.permana@paper.id\", \"user_name\": \"arilindra21\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/141698279?v=4\", \"provider_id\": \"141698279\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"arilindra21\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:53:15.168411+00", + "updated_at": "2025-11-24 15:04:49.492354+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:53:15.175354+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 234, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7b247e32-ed65-4865-a1ce-0e9cc4cb8297", + "aud": "authenticated", + "role": "authenticated", + "email": "atmasusanto38.imphenhack@gmail.com", + "encrypted_password": "$2a$10$q6bBnhaVZUQFssGdseyZe.P6PUy3A8ENGWdwXvfTjNDytj7xGVnRa", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "5238b6028edac96bae9d458afa7f108f1e065a9911eb22b49a680362", + "confirmation_sent_at": "2025-11-23 14:31:04.062767+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"7b247e32-ed65-4865-a1ce-0e9cc4cb8297\", \"email\": \"atmasusanto38.imphenhack@gmail.com\", \"username\": \"snakeeater\", \"display_name\": \"Atma01\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:31:03.957127+00", + "updated_at": "2025-11-23 14:31:05.970807+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 235, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7b4b6a6d-1cef-415a-aca3-f98648f0f340", + "aud": "authenticated", + "role": "authenticated", + "email": "ihsanwar77@gmail.com", + "encrypted_password": "$2a$10$SQfsth0pjddBTvEHGTrUie4gIwmpOMJhQcNuPKJKHk3UeCjLphMp.", + "email_confirmed_at": "2025-11-23 13:11:23.058443+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:11:09.481123+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:39:54.13864+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"7b4b6a6d-1cef-415a-aca3-f98648f0f340\", \"email\": \"ihsanwar77@gmail.com\", \"username\": \"cifera\", \"display_name\": \"Cifera\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:11:09.432023+00", + "updated_at": "2025-11-24 12:12:13.697031+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:11:23.058443+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 236, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7c30facc-eb6f-412e-88c4-0095f9bfdd1b", + "aud": "authenticated", + "role": "authenticated", + "email": "fsparatos@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:31:17.043975+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:51:17.610824+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"85480665\", \"email\": \"fsparatos@gmail.com\", \"user_name\": \"7FIl\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/85480665?v=4\", \"provider_id\": \"85480665\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"7FIl\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:31:17.037768+00", + "updated_at": "2025-11-24 14:36:30.874557+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:31:17.043975+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 237, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7ca6c4b1-be0e-4993-83d8-0eff8945ea50", + "aud": "authenticated", + "role": "authenticated", + "email": "shalahuddin.4332311020@students.polibatam.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:40:31.293345+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:55:28.177054+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"147135570\", \"name\": \"Shalahuddin Al-Ayyubi\", \"email\": \"shalahuddin.4332311020@students.polibatam.ac.id\", \"full_name\": \"Shalahuddin Al-Ayyubi\", \"user_name\": \"0xshalah\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/147135570?v=4\", \"provider_id\": \"147135570\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"0xshalah\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:40:31.284885+00", + "updated_at": "2025-11-24 04:18:52.830791+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:40:31.293345+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 238, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7cbcf002-8e92-4b28-bcee-1776ddf5ec86", + "aud": "authenticated", + "role": "authenticated", + "email": "arissetia.m@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 09:25:42.993939+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:58:25.547887+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"13942122\", \"name\": \"Aris Setiawan\", \"email\": \"arissetia.m@gmail.com\", \"full_name\": \"Aris Setiawan\", \"user_name\": \"madebyaris\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/13942122?v=4\", \"provider_id\": \"13942122\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"madebyaris\"}", + "is_super_admin": null, + "created_at": "2025-11-24 09:25:42.969816+00", + "updated_at": "2025-11-24 16:22:36.761511+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 09:25:42.993939+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 239, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7d5ac7ef-704e-4275-b1b6-59b497548365", + "aud": "authenticated", + "role": "authenticated", + "email": "andikadwipwf@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:39:08.29267+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:39:10.255457+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"78303093\", \"email\": \"andikadwipwf@gmail.com\", \"user_name\": \"TheGoodEvil28\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/78303093?v=4\", \"provider_id\": \"78303093\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"TheGoodEvil28\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:39:08.281466+00", + "updated_at": "2025-11-24 05:39:10.257822+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:39:08.29267+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 240, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7da76028-0ed7-434e-b51e-d163cb3d3585", + "aud": "authenticated", + "role": "authenticated", + "email": "msayyid.rafeed@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:39:12.759719+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:39:13.47497+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"189184844\", \"name\": \"Muhammad Sayyid Rafee' Djamil\", \"email\": \"msayyid.rafeed@gmail.com\", \"full_name\": \"Muhammad Sayyid Rafee' Djamil\", \"user_name\": \"SayyidRafeeD\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/189184844?v=4\", \"provider_id\": \"189184844\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"SayyidRafeeD\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:39:12.754633+00", + "updated_at": "2025-11-23 13:39:13.476697+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:39:12.759719+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 241, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7ecd33ed-40b6-4236-981f-5319fdd390d3", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadriskiakbar2009@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:14:51.97034+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:14:53.927659+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"203506855\", \"email\": \"muhammadriskiakbar2009@gmail.com\", \"user_name\": \"Recon1337-prog\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/203506855?v=4\", \"provider_id\": \"203506855\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Recon1337-prog\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:14:51.946955+00", + "updated_at": "2025-11-24 12:14:53.943349+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:14:51.97034+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 242, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7f0592c4-b0a6-476d-a436-75a8fe753f32", + "aud": "authenticated", + "role": "authenticated", + "email": "bobypratama.dev@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:27:20.952747+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:27:22.267164+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"89312809\", \"name\": \"Muhammad Boby Pratama\", \"email\": \"bobypratama.dev@gmail.com\", \"full_name\": \"Muhammad Boby Pratama\", \"user_name\": \"MBobyPratama\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/89312809?v=4\", \"provider_id\": \"89312809\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MBobyPratama\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:27:20.945891+00", + "updated_at": "2025-11-24 18:44:59.90808+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:27:20.952747+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 243, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "7f1689fe-9d54-4cec-a1f0-db5ffae98d3b", + "aud": "authenticated", + "role": "authenticated", + "email": "akbarrozaq691@gmail.com", + "encrypted_password": "$2a$10$82oh0NVkML5tao7UMUemheaoUzraWPndYstJjGdGDWkPICLgazma.", + "email_confirmed_at": "2025-11-23 17:10:01.400513+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 17:09:43.572053+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 17:29:27.583633+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"7f1689fe-9d54-4cec-a1f0-db5ffae98d3b\", \"email\": \"akbarrozaq691@gmail.com\", \"username\": \"akbarrozaq691\", \"display_name\": \"Hasri Akbar Awal Rozaq\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 17:09:43.566328+00", + "updated_at": "2025-11-24 12:05:54.562292+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 17:10:01.400513+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 244, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "801d6313-6a1c-45d3-9a64-1db88269e250", + "aud": "authenticated", + "role": "authenticated", + "email": "220605110044@student.uin-malang.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:14:36.575827+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:14:37.302311+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"144804261\", \"name\": \"Ridho Aulia Rahman\", \"email\": \"220605110044@student.uin-malang.ac.id\", \"full_name\": \"Ridho Aulia Rahman\", \"user_name\": \"EngRidhoNet\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/144804261?v=4\", \"provider_id\": \"144804261\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"EngRidhoNet\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:14:36.569414+00", + "updated_at": "2025-11-23 13:14:37.30402+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:14:36.575827+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 245, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "805d5fc1-6f9d-4e37-b1bc-514ed4e17bea", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadrestu1108@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 12:57:19.284447+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:13:12.773204+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"83255517\", \"name\": \"Muhammad Restu\", \"email\": \"muhammadrestu1108@gmail.com\", \"full_name\": \"Muhammad Restu\", \"user_name\": \"MuhammadRestu999\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/83255517?v=4\", \"provider_id\": \"83255517\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MuhammadRestu999\"}", + "is_super_admin": null, + "created_at": "2025-11-23 12:57:19.277935+00", + "updated_at": "2025-11-23 13:13:12.782952+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:57:19.284447+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 246, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "80e0229e-e268-4d22-a0c5-4610bd2b4bdd", + "aud": "authenticated", + "role": "authenticated", + "email": "iyandabes1@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:26:37.389061+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:26:38.309189+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"149705577\", \"name\": \"Astha\", \"email\": \"iyandabes1@gmail.com\", \"full_name\": \"Astha\", \"user_name\": \"Astha4Study\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/149705577?v=4\", \"provider_id\": \"149705577\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Astha4Study\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:26:37.363543+00", + "updated_at": "2025-11-24 08:26:38.326917+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:26:37.389061+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 247, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "80f24b96-36a6-44eb-a361-26bd04554609", + "aud": "authenticated", + "role": "authenticated", + "email": "ridhofahmij225@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 20:36:29.588222+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 20:36:31.931883+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"61994966\", \"name\": \"Ridha Fahmi J\", \"email\": \"ridhofahmij225@gmail.com\", \"full_name\": \"Ridha Fahmi J\", \"user_name\": \"ahdirmai\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/61994966?v=4\", \"provider_id\": \"61994966\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ahdirmai\"}", + "is_super_admin": null, + "created_at": "2025-11-23 20:36:29.518455+00", + "updated_at": "2025-11-24 14:40:41.723761+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 20:36:29.588222+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 248, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "80f40577-19f8-45cb-86d1-dcc60472b9e8", + "aud": "authenticated", + "role": "authenticated", + "email": "wisnuajipamungkas354@gmail.com", + "encrypted_password": "$2a$10$vKxhbCr78NshjOW7G7L0rOQ1RnStWhCwRrM/Z2KX53k4GRYmFV432", + "email_confirmed_at": "2025-11-24 09:26:59.629528+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 09:26:16.303198+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:27:05.823862+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"80f40577-19f8-45cb-86d1-dcc60472b9e8\", \"email\": \"wisnuajipamungkas354@gmail.com\", \"username\": \"wisnuajipamungkas\", \"display_name\": \"Wisnu Aji Pamungkas\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 09:26:16.294919+00", + "updated_at": "2025-11-24 13:10:39.819978+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 09:26:59.629528+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 249, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8177c99d-28f5-4a88-8415-9abea3fb934b", + "aud": "authenticated", + "role": "authenticated", + "email": "mgsmfr@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 17:21:55.175903+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 17:21:57.51452+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"237782722\", \"email\": \"mgsmfr@gmail.com\", \"user_name\": \"Fahim-Femure\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/237782722?v=4\", \"provider_id\": \"237782722\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Fahim-Femure\"}", + "is_super_admin": null, + "created_at": "2025-11-24 17:21:55.143016+00", + "updated_at": "2025-11-24 17:21:57.530731+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 17:21:55.175903+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 250, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8268ab9d-acc1-4379-b9e9-331392668db2", + "aud": "authenticated", + "role": "authenticated", + "email": "eguinjonathan08@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:12:28.920188+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:51:28.15175+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"146400304\", \"name\": \"Guinn\", \"email\": \"eguinjonathan08@gmail.com\", \"full_name\": \"Guinn\", \"user_name\": \"Jonathan0823\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/146400304?v=4\", \"provider_id\": \"146400304\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Jonathan0823\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:12:28.914972+00", + "updated_at": "2025-11-24 11:31:22.798436+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:12:28.920188+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 251, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "83635084-c207-40ee-ac11-742b213fe843", + "aud": "authenticated", + "role": "authenticated", + "email": "fardanyudhistira16@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:47:11.739586+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:47:15.893669+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"163220260\", \"name\": \"Fardan Yudhistira \", \"email\": \"fardanyudhistira16@gmail.com\", \"full_name\": \"Fardan Yudhistira \", \"user_name\": \"fardan16\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/163220260?v=4\", \"provider_id\": \"163220260\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fardan16\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:47:11.727615+00", + "updated_at": "2025-11-23 13:47:15.931105+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:47:11.739586+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 252, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "83c6b62f-5c95-4e74-b16f-a9f48a9346cc", + "aud": "authenticated", + "role": "authenticated", + "email": "quyun532@gmail.com", + "encrypted_password": "$2a$10$LfG2VFC.38XKEU722s3nN.GK.luKMQ/2jLqXQVmRI7GwasIBer2y6", + "email_confirmed_at": "2025-11-24 07:33:29.660386+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 07:33:16.528792+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:33:37.872157+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"83c6b62f-5c95-4e74-b16f-a9f48a9346cc\", \"email\": \"quyun532@gmail.com\", \"username\": \"quyunisnawan\", \"display_name\": \"Quyun Isnawan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 07:33:16.519502+00", + "updated_at": "2025-11-24 07:33:37.896129+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:33:29.660386+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 253, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "83cc1c2b-01ba-438c-8c62-7c11a75c531c", + "aud": "authenticated", + "role": "authenticated", + "email": "zakamaragames@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:25:46.920444+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:25:47.916907+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"89033712\", \"name\": \"Muhammad Ilyasa\", \"email\": \"zakamaragames@gmail.com\", \"full_name\": \"Muhammad Ilyasa\", \"user_name\": \"iyasz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/89033712?v=4\", \"provider_id\": \"89033712\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"iyasz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:25:46.914111+00", + "updated_at": "2025-11-23 15:25:47.919408+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:25:46.920444+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 254, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "840aa041-314a-44cc-8b52-e529b7aab3c3", + "aud": "authenticated", + "role": "authenticated", + "email": "krisnaguntur71@gmail.com", + "encrypted_password": "$2a$10$vIrOWFRVP4cly3wsBeuSe.VWCTsN9nMLPfkYEDAnbA06YhrSYXIom", + "email_confirmed_at": "2025-11-23 13:56:45.078765+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:56:20.0968+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:06:37.564777+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"840aa041-314a-44cc-8b52-e529b7aab3c3\", \"email\": \"krisnaguntur71@gmail.com\", \"username\": \"krsen_\", \"display_name\": \"krsen_\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:56:20.091116+00", + "updated_at": "2025-11-24 12:58:44.28101+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:56:45.078765+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 255, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8454c75e-b0e4-4c04-a580-c13cddd63f3c", + "aud": "authenticated", + "role": "authenticated", + "email": "mhmdazkanfl@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:03:27.37854+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:03:28.153156+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"215347290\", \"name\": \"Muhammad Azka Naufal\", \"email\": \"mhmdazkanfl@gmail.com\", \"full_name\": \"Muhammad Azka Naufal\", \"user_name\": \"mhmdazkanfl\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/215347290?v=4\", \"provider_id\": \"215347290\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mhmdazkanfl\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:03:27.37029+00", + "updated_at": "2025-11-24 08:03:28.154965+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:03:27.37854+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 256, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "848435a2-d024-497a-b020-f320155ef675", + "aud": "authenticated", + "role": "authenticated", + "email": "fajarrahman216@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:05:10.467675+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:05:11.059798+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"145206889\", \"name\": \"Computer\", \"email\": \"fajarrahman216@gmail.com\", \"full_name\": \"Computer\", \"user_name\": \"IIcomputerII\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/145206889?v=4\", \"provider_id\": \"145206889\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"IIcomputerII\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:05:10.443299+00", + "updated_at": "2025-11-24 07:09:30.75407+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:05:10.467675+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 257, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "84fe21f4-c03c-4042-b535-d61d92d33288", + "aud": "authenticated", + "role": "authenticated", + "email": "aswinarung2@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:21:40.972807+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:21:41.705453+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"74695105\", \"name\": \"AswinA\", \"email\": \"aswinarung2@gmail.com\", \"full_name\": \"AswinA\", \"user_name\": \"Aswin-art\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/74695105?v=4\", \"provider_id\": \"74695105\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Aswin-art\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:21:40.964341+00", + "updated_at": "2025-11-23 14:21:41.708017+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:21:40.972807+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 258, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "85887410-b9e3-4861-8ebb-e35474bfd003", + "aud": "authenticated", + "role": "authenticated", + "email": "davidk3476@gmail.com", + "encrypted_password": "$2a$10$PYacmGAhLKRARYMb3t2bYOPTHIBauSzNxPzQr104z0OVjj1N3lRuq", + "email_confirmed_at": "2025-11-24 03:43:05.965535+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:42:36.31522+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:47:28.149255+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"85887410-b9e3-4861-8ebb-e35474bfd003\", \"email\": \"davidk3476@gmail.com\", \"username\": \"david\", \"display_name\": \"David\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:42:36.230106+00", + "updated_at": "2025-11-24 03:47:28.152775+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:43:05.965535+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 259, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "865d44a1-be9b-4dbc-8110-02e91a0ad557", + "aud": "authenticated", + "role": "authenticated", + "email": "glenrioariesto@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 09:13:42.167928+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:13:43.305202+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"126796822\", \"name\": \"GlennJackson\", \"email\": \"glenrioariesto@gmail.com\", \"full_name\": \"GlennJackson\", \"user_name\": \"glenrioariesto\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/126796822?v=4\", \"provider_id\": \"126796822\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"glenrioariesto\"}", + "is_super_admin": null, + "created_at": "2025-11-24 09:13:42.145631+00", + "updated_at": "2025-11-24 12:33:50.168724+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 09:13:42.167928+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 260, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "86be6a41-8d6d-4f91-b5d7-782d9a2de14e", + "aud": "authenticated", + "role": "authenticated", + "email": "ferta996@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:09:35.966159+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:09:37.013402+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"190934052\", \"name\": \"Ferta Junindi\", \"email\": \"ferta996@gmail.com\", \"full_name\": \"Ferta Junindi\", \"user_name\": \"MyMrshll\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/190934052?v=4\", \"provider_id\": \"190934052\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MyMrshll\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:09:35.958608+00", + "updated_at": "2025-11-24 03:59:40.515935+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:09:35.966159+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 261, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8709fc42-9f88-496c-8610-6cae5253cce9", + "aud": "authenticated", + "role": "authenticated", + "email": "julianisa.ar@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:04:42.622649+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:04:43.384199+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"100396449\", \"name\": \"Fatah\", \"email\": \"julianisa.ar@gmail.com\", \"full_name\": \"Fatah\", \"user_name\": \"fatahrnmods\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/100396449?v=4\", \"provider_id\": \"100396449\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fatahrnmods\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:04:42.617466+00", + "updated_at": "2025-11-24 12:21:03.567576+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:04:42.622649+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 262, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8786bfb3-7f3e-40ed-9f46-f3ab5b1a938a", + "aud": "authenticated", + "role": "authenticated", + "email": "indraaziz15@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:52:30.799884+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:52:33.612496+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"236280933\", \"email\": \"indraaziz15@gmail.com\", \"user_name\": \"Sizzarr\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/236280933?v=4\", \"provider_id\": \"236280933\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Sizzarr\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:52:30.775616+00", + "updated_at": "2025-11-24 09:24:04.08873+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:52:30.799884+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 263, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "87ce6b8d-af52-449b-a11a-854042633edf", + "aud": "authenticated", + "role": "authenticated", + "email": "hshino@student.telkomuniversity.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:39:34.682359+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:18:51.266899+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"116771617\", \"name\": \"Muhammad Hashfi Hadyan\", \"email\": \"hshino@student.telkomuniversity.ac.id\", \"full_name\": \"Muhammad Hashfi Hadyan\", \"user_name\": \"hshinosa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/116771617?v=4\", \"provider_id\": \"116771617\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"hshinosa\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:39:34.676006+00", + "updated_at": "2025-11-24 13:29:29.219026+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:39:34.682359+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 264, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8a1671be-64ea-48ec-9b24-f2589fc33281", + "aud": "authenticated", + "role": "authenticated", + "email": "farhansyahbanna07@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:08:19.778578+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:08:21.248723+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"156569630\", \"name\": \"Farhan \", \"email\": \"farhansyahbanna07@gmail.com\", \"full_name\": \"Farhan \", \"user_name\": \"farhansyahbanna\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/156569630?v=4\", \"provider_id\": \"156569630\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"farhansyahbanna\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:08:19.755019+00", + "updated_at": "2025-11-24 13:08:21.254347+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:08:19.778578+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 265, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8b023aff-3d10-44dd-ad30-2251604bd319", + "aud": "authenticated", + "role": "authenticated", + "email": "nawvalovsky@gmail.com", + "encrypted_password": "$2a$10$334Yiw02m6PGc5Fx6cL8LO.kgShviWvbI3L9gnOP33TpkWlratHw2", + "email_confirmed_at": "2025-11-23 14:26:14.210204+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:25:21.031537+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:28:37.948543+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"8b023aff-3d10-44dd-ad30-2251604bd319\", \"email\": \"nawvalovsky@gmail.com\", \"username\": \"nawvalovskyv\", \"display_name\": \"Nawvalovsky Valskaya\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:25:21.025681+00", + "updated_at": "2025-11-23 16:00:07.754802+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:26:14.210204+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 266, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8bcee28c-19fa-45b8-bc0a-35e97af0110c", + "aud": "authenticated", + "role": "authenticated", + "email": "mininsna@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 12:54:26.694649+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:50:31.642934+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"70429604\", \"name\": \"Minin\", \"email\": \"mininsna@gmail.com\", \"full_name\": \"Minin\", \"user_name\": \"mininxd\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/70429604?v=4\", \"provider_id\": \"70429604\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mininxd\"}", + "is_super_admin": null, + "created_at": "2025-11-23 12:54:26.651289+00", + "updated_at": "2025-11-24 06:32:56.689291+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:54:26.694649+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 267, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8bf4de04-3335-43cd-9f09-9a0bcddd3e65", + "aud": "authenticated", + "role": "authenticated", + "email": "rzkalih330@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:05:14.221676+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:05:17.286174+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"140790644\", \"email\": \"rzkalih330@gmail.com\", \"user_name\": \"rzkalih\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/140790644?v=4\", \"provider_id\": \"140790644\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rzkalih\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:05:14.213916+00", + "updated_at": "2025-11-23 15:05:17.289379+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:05:14.221676+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 268, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8c49cb67-5a7b-4bff-bd78-141166b1ce39", + "aud": "authenticated", + "role": "authenticated", + "email": "agusse9986@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:18:57.627432+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:18:58.956373+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"40340649\", \"name\": \"Agus Setiawan\", \"email\": \"agusse9986@gmail.com\", \"full_name\": \"Agus Setiawan\", \"user_name\": \"aguz86\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/40340649?v=4\", \"provider_id\": \"40340649\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"aguz86\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:18:57.621946+00", + "updated_at": "2025-11-23 14:18:58.958234+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:18:57.627432+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 269, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8ca8015e-07c1-4d57-86f0-3223165b10af", + "aud": "authenticated", + "role": "authenticated", + "email": "ixanramdhani@gmail.com", + "encrypted_password": "$2a$10$a1hhR7txJh8yT7JdA2mnT.y7yOXkh4T2ZnXOB0RfkVh4D2kJ5C4uS", + "email_confirmed_at": "2025-11-23 12:57:01.459411+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 12:56:39.463614+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 12:57:14.117262+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"8ca8015e-07c1-4d57-86f0-3223165b10af\", \"email\": \"ixanramdhani@gmail.com\", \"username\": \"ixnr\", \"display_name\": \"ixnr\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 12:56:39.458547+00", + "updated_at": "2025-11-23 14:59:33.786454+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:57:01.459411+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 270, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8d3cdd6e-cf34-4462-a2b3-91874bda4839", + "aud": "authenticated", + "role": "authenticated", + "email": "bagas101021@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:08:17.346068+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:08:18.237437+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"66859254\", \"name\": \"Bagas Pamungkas\", \"email\": \"bagas101021@gmail.com\", \"full_name\": \"Bagas Pamungkas\", \"user_name\": \"bagasdevs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/66859254?v=4\", \"provider_id\": \"66859254\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"bagasdevs\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:08:17.33883+00", + "updated_at": "2025-11-23 14:08:18.239163+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:08:17.346068+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 271, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8e4ccb11-d491-4aaf-bf78-15fa333ea71d", + "aud": "authenticated", + "role": "authenticated", + "email": "maulidanfaka391@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 15:21:09.614337+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 15:21:10.559429+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"223251392\", \"name\": \"Faksz\", \"email\": \"maulidanfaka391@gmail.com\", \"full_name\": \"Faksz\", \"user_name\": \"Faksz212\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/223251392?v=4\", \"provider_id\": \"223251392\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Faksz212\"}", + "is_super_admin": null, + "created_at": "2025-11-24 15:21:09.594875+00", + "updated_at": "2025-11-24 15:21:10.565231+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 15:21:09.614337+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 272, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "8e907eae-5137-4499-a13b-11fd89106ae4", + "aud": "authenticated", + "role": "authenticated", + "email": "mugteadotco@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:27:42.638849+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:24:53.074576+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"177865365\", \"name\": \"MugTea\", \"email\": \"mugteadotco@gmail.com\", \"full_name\": \"MugTea\", \"user_name\": \"mug31\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/177865365?v=4\", \"provider_id\": \"177865365\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mug31\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:27:42.624023+00", + "updated_at": "2025-11-24 14:28:17.767152+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:27:42.638849+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 273, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "90b98bc8-3d98-428f-8549-07457cf4bda0", + "aud": "authenticated", + "role": "authenticated", + "email": "denandragagono@gmail.com", + "encrypted_password": "$2a$10$.mboh9Gss0rRKpCbsK350O8SmS/vl4Lq0viO.WBaduy3vFcGI.wsm", + "email_confirmed_at": "2025-11-24 03:20:47.443916+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:17:52.832348+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:17:01.97756+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\", \"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"123805263\", \"email\": \"denandragagono@gmail.com\", \"username\": \"mochalatte\", \"user_name\": \"dhenandra123\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/123805263?v=4\", \"provider_id\": \"123805263\", \"display_name\": \"Mocha\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"dhenandra123\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:17:52.821007+00", + "updated_at": "2025-11-24 09:17:02.636555+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:20:47.443916+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 274, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "91064af2-a72c-4c48-9cd5-acdc2b6527f9", + "aud": "authenticated", + "role": "authenticated", + "email": "trian.radis448@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:42:24.91329+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:35:17.693069+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"117373959\", \"name\": \"Trian Radis Pengestu\", \"email\": \"trian.radis448@gmail.com\", \"full_name\": \"Trian Radis Pengestu\", \"user_name\": \"threeanra\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/117373959?v=4\", \"provider_id\": \"117373959\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"threeanra\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:42:24.904682+00", + "updated_at": "2025-11-24 14:55:24.889393+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:42:24.91329+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 275, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9130249c-c366-4c47-9d4e-337c35abce6a", + "aud": "authenticated", + "role": "authenticated", + "email": "mnazriel177@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:56:03.449273+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:56:04.915062+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"179596987\", \"email\": \"mnazriel177@gmail.com\", \"user_name\": \"ye-00\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/179596987?v=4\", \"provider_id\": \"179596987\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ye-00\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:56:03.427319+00", + "updated_at": "2025-11-24 12:25:48.323027+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:56:03.449273+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 276, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "91582716-23d1-42f9-afc8-6eb857bcc289", + "aud": "authenticated", + "role": "authenticated", + "email": "onesta928@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:13:25.301131+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:13:26.290351+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"229974905\", \"email\": \"onesta928@gmail.com\", \"user_name\": \"onesta928-ops\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/229974905?v=4\", \"provider_id\": \"229974905\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"onesta928-ops\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:13:25.296098+00", + "updated_at": "2025-11-23 13:13:26.292149+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:13:25.301131+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 277, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "917aa59a-bf05-47af-a26b-f78f9faeaac0", + "aud": "authenticated", + "role": "authenticated", + "email": "dimasmaulana.idn@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:47:15.954467+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:47:16.805296+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"182078038\", \"name\": \"Dimas Maulana\", \"email\": \"dimasmaulana.idn@gmail.com\", \"full_name\": \"Dimas Maulana\", \"user_name\": \"dimassmaulanaaa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/182078038?v=4\", \"provider_id\": \"182078038\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"dimassmaulanaaa\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:47:15.947312+00", + "updated_at": "2025-11-23 15:47:16.808628+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:47:15.954467+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 278, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "91c5e840-3758-4c7f-9dcc-b621b6ba4d10", + "aud": "authenticated", + "role": "authenticated", + "email": "naufalhaidar946@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:13:46.682383+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:45:09.635784+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"145180576\", \"email\": \"naufalhaidar946@gmail.com\", \"user_name\": \"naufalhaidarazmi\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/145180576?v=4\", \"provider_id\": \"145180576\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"naufalhaidarazmi\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:13:46.653594+00", + "updated_at": "2025-11-24 05:45:09.640014+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:13:46.682383+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 279, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "92e971bf-863c-4d66-a522-81a1a864c56c", + "aud": "authenticated", + "role": "authenticated", + "email": "sandysyarifhartanto@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:52:22.747714+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:17:27.062829+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"238159438\", \"name\": \"Sandy Syarif\", \"email\": \"sandysyarifhartanto@gmail.com\", \"full_name\": \"Sandy Syarif\", \"user_name\": \"sandy-sh\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/238159438?v=4\", \"provider_id\": \"238159438\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sandy-sh\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:52:22.732059+00", + "updated_at": "2025-11-24 13:48:58.488348+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:52:22.747714+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 280, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "93cc57f9-48c5-4b71-83bd-63bac1f5717a", + "aud": "authenticated", + "role": "authenticated", + "email": "77leviann@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:52:55.920078+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:52:56.779446+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"130739020\", \"email\": \"77leviann@gmail.com\", \"user_name\": \"77leviann\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/130739020?v=4\", \"provider_id\": \"130739020\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"77leviann\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:52:55.906332+00", + "updated_at": "2025-11-24 01:52:56.783302+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:52:55.920078+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 281, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "93d67e12-dbf6-4df7-882f-38ff471c9cf5", + "aud": "authenticated", + "role": "authenticated", + "email": "roxyuciha@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:28:39.652016+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:38:37.767956+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"183169196\", \"name\": \"Robbanie\", \"email\": \"roxyuciha@gmail.com\", \"full_name\": \"Robbanie\", \"user_name\": \"IllalRajinCoding\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/183169196?v=4\", \"provider_id\": \"183169196\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"IllalRajinCoding\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:28:39.647248+00", + "updated_at": "2025-11-24 07:52:59.690698+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:28:39.652016+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 282, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "93ffb004-f16d-4dd8-bd4e-55384c056138", + "aud": "authenticated", + "role": "authenticated", + "email": "thisiswahibza@gmail.com", + "encrypted_password": "$2a$10$fygI7FZOPzkkyxnqyJruwuksb2/jAXN.fNsS/L/jY806T1Lb/DKMW", + "email_confirmed_at": "2025-11-23 13:35:44.594021+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:35:02.7349+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:36:14.237169+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"93ffb004-f16d-4dd8-bd4e-55384c056138\", \"email\": \"thisiswahibza@gmail.com\", \"username\": \"wahibza\", \"display_name\": \"Wahib Zabarrudin\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:35:02.694448+00", + "updated_at": "2025-11-23 13:36:14.239002+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:35:44.594021+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 283, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "953d0ce6-49ee-4606-9616-23b204e61710", + "aud": "authenticated", + "role": "authenticated", + "email": "raazan.muhammad.ikhsan@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 18:07:35.652314+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 18:07:36.271289+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"208182469\", \"name\": \"Razan Muhammad Ikhsan\", \"email\": \"raazan.muhammad.ikhsan@gmail.com\", \"full_name\": \"Razan Muhammad Ikhsan\", \"user_name\": \"zannbjir\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/208182469?v=4\", \"provider_id\": \"208182469\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"zannbjir\"}", + "is_super_admin": null, + "created_at": "2025-11-23 18:07:35.642612+00", + "updated_at": "2025-11-23 18:07:36.274445+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 18:07:35.652314+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 284, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "955d4a9e-7e58-4210-86af-d38f8794a565", + "aud": "authenticated", + "role": "authenticated", + "email": "farilpratamap@gmail.com", + "encrypted_password": "$2a$10$EgsniQtSzozqMCD448pq0OA1x/mGMQdtXnXF4qUOnC88.zOMJ8oDO", + "email_confirmed_at": "2025-11-23 12:58:09.436724+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 12:57:48.625223+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:04:18.282897+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"955d4a9e-7e58-4210-86af-d38f8794a565\", \"email\": \"farilpratamap@gmail.com\", \"username\": \"faril\", \"display_name\": \"FARIL12\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 12:57:48.615916+00", + "updated_at": "2025-11-24 14:22:39.345268+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:58:09.436724+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 285, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9665ef56-2b46-4883-bd1d-29d20c5a6f98", + "aud": "authenticated", + "role": "authenticated", + "email": "candraggml@gmail.com", + "encrypted_password": "$2a$10$3FaNrVUkzwEHceVe10SUFOla2ScMYtQAkN3WJtijQjoLyDV/fHmO2", + "email_confirmed_at": "2025-11-23 23:07:53.994428+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 23:07:15.15606+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 23:07:58.39878+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"9665ef56-2b46-4883-bd1d-29d20c5a6f98\", \"email\": \"candraggml@gmail.com\", \"username\": \"candra\", \"display_name\": \"Candra\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 23:07:15.128695+00", + "updated_at": "2025-11-23 23:07:58.400583+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 23:07:53.994428+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 286, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9815d40b-d962-4a75-8383-8993407f89a7", + "aud": "authenticated", + "role": "authenticated", + "email": "aulianaufaln@gmail.com", + "encrypted_password": "$2a$10$n2OUVVksGJQTzFkpeSzm2.0qcDCvlhqrxtN2x1MiYG0d35cjbpXb2", + "email_confirmed_at": "2025-11-23 13:34:01.303137+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:33:43.33981+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:53:57.751467+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"9815d40b-d962-4a75-8383-8993407f89a7\", \"email\": \"aulianaufaln@gmail.com\", \"username\": \"naufal\", \"display_name\": \"Aulia Naufal Nurhaqiqi\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:33:43.33471+00", + "updated_at": "2025-11-24 02:53:57.753458+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:34:01.303137+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 287, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "98236b68-a066-4538-9ae5-d5b063961244", + "aud": "authenticated", + "role": "authenticated", + "email": "rubenrextonb@gmail.com", + "encrypted_password": "$2a$10$RGGVoIp6In.n5u7jv.T.8uNQe7CZMEm3qaPvUQIjwDjNfu2p/MwIO", + "email_confirmed_at": "2025-11-23 14:50:03.988883+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:49:41.489596+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:37:15.74458+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"98236b68-a066-4538-9ae5-d5b063961244\", \"email\": \"rubenrextonb@gmail.com\", \"username\": \"rexton234\", \"display_name\": \"Ruben Rexton B\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:49:41.482618+00", + "updated_at": "2025-11-24 06:37:15.74708+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:50:03.988883+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 288, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "98352ac8-241d-4433-b61b-60d9904b7999", + "aud": "authenticated", + "role": "authenticated", + "email": "bettyindrawati4@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:54:12.399109+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:26:12.672908+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"104440943\", \"name\": \"Betty Indrawati\", \"email\": \"bettyindrawati4@gmail.com\", \"full_name\": \"Betty Indrawati\", \"user_name\": \"BettyIndrawati\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/104440943?v=4\", \"provider_id\": \"104440943\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"BettyIndrawati\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:54:12.392375+00", + "updated_at": "2025-11-24 13:26:12.675298+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:54:12.399109+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 289, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "98a8d32e-1408-4f29-a374-fba3470bbe7c", + "aud": "authenticated", + "role": "authenticated", + "email": "alfandy115@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:10:41.059034+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:00:05.869306+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"69292409\", \"name\": \"Alfandy Afriandani\", \"email\": \"alfandy115@gmail.com\", \"full_name\": \"Alfandy Afriandani\", \"user_name\": \"alfandy12\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/69292409?v=4\", \"provider_id\": \"69292409\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"alfandy12\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:10:41.049957+00", + "updated_at": "2025-11-24 16:10:37.10328+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:10:41.059034+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 290, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9939f383-0ee4-4b8e-be03-08977324edd0", + "aud": "authenticated", + "role": "authenticated", + "email": "zahranvidian@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 16:36:13.675706+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:36:14.21372+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"98220259\", \"email\": \"zahranvidian@gmail.com\", \"user_name\": \"ZDV16\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/98220259?v=4\", \"provider_id\": \"98220259\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ZDV16\"}", + "is_super_admin": null, + "created_at": "2025-11-24 16:36:13.669017+00", + "updated_at": "2025-11-24 16:36:14.226426+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 16:36:13.675706+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 291, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9a5f346e-dcfe-47d2-9e43-80dd353d46e3", + "aud": "authenticated", + "role": "authenticated", + "email": "alifr5353@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-17 15:14:58.256211+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:30:27.716555+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"68107917\", \"name\": \"Alif Ramadhan \", \"email\": \"alifr5353@gmail.com\", \"full_name\": \"Alif Ramadhan \", \"user_name\": \"NnA301023\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/68107917?v=4\", \"provider_id\": \"68107917\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"NnA301023\"}", + "is_super_admin": null, + "created_at": "2025-11-17 15:14:58.205874+00", + "updated_at": "2025-11-24 14:26:37.966043+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-17 15:14:58.256211+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 292, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9acbdac5-f7aa-4834-90c4-4d19d67410f4", + "aud": "authenticated", + "role": "authenticated", + "email": "gn.mailwork@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:44:02.706803+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:55:03.354784+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"43877387\", \"name\": \"Grafis Nuresa\", \"email\": \"gn.mailwork@gmail.com\", \"full_name\": \"Grafis Nuresa\", \"user_name\": \"iamgdevvv\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/43877387?v=4\", \"provider_id\": \"43877387\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"iamgdevvv\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:44:02.683642+00", + "updated_at": "2025-11-24 12:44:13.485941+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:44:02.706803+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 293, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9b067871-2da9-48e7-b15f-1e604d422d33", + "aud": "authenticated", + "role": "authenticated", + "email": "zexceed12300@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:12:56.369878+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:12:57.647284+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"36181923\", \"name\": \"Ihsan Nul Amri\", \"email\": \"zexceed12300@gmail.com\", \"full_name\": \"Ihsan Nul Amri\", \"user_name\": \"zexceed12300\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/36181923?v=4\", \"provider_id\": \"36181923\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"zexceed12300\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:12:56.360252+00", + "updated_at": "2025-11-23 18:50:17.942418+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:12:56.369878+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 294, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9b212b4f-a019-48cd-9e6a-0f9d3c0ada4d", + "aud": "authenticated", + "role": "authenticated", + "email": "haikalrafifas@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:03:05.386439+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:03:06.191055+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"99420525\", \"name\": \"Haikal Rafif\", \"email\": \"haikalrafifas@gmail.com\", \"full_name\": \"Haikal Rafif\", \"user_name\": \"haikalrafifas\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/99420525?v=4\", \"provider_id\": \"99420525\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"haikalrafifas\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:03:05.355814+00", + "updated_at": "2025-11-24 10:19:13.984159+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:03:05.386439+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 295, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9b9b68e3-f8fa-47a2-a47b-13af2d5cb22f", + "aud": "authenticated", + "role": "authenticated", + "email": "novealdioardhan@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:22:45.480043+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:15:00.644005+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"113153186\", \"name\": \"ardhan novealdio\", \"email\": \"novealdioardhan@gmail.com\", \"full_name\": \"ardhan novealdio\", \"user_name\": \"Ardhan2121\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/113153186?v=4\", \"provider_id\": \"113153186\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Ardhan2121\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:22:45.390435+00", + "updated_at": "2025-11-24 09:17:46.928273+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:22:45.480043+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 296, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9c63cf90-68af-4566-aa74-562a9a10d73a", + "aud": "authenticated", + "role": "authenticated", + "email": "nabilpasha230606@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:28:53.011163+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:28:53.900258+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"144336388\", \"name\": \"Nabil Pasha\", \"email\": \"nabilpasha230606@gmail.com\", \"full_name\": \"Nabil Pasha\", \"user_name\": \"nbyl26\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/144336388?v=4\", \"provider_id\": \"144336388\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"nbyl26\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:28:53.005367+00", + "updated_at": "2025-11-23 14:28:53.901998+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:28:53.011163+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 297, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9c963bbf-6eb0-46c8-86ce-ebf1d0d09b38", + "aud": "authenticated", + "role": "authenticated", + "email": "nash.collage.life@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:23:29.308856+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:23:30.082+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"212905198\", \"name\": \"Muhammad Nashrulloh\", \"email\": \"nash.collage.life@gmail.com\", \"full_name\": \"Muhammad Nashrulloh\", \"user_name\": \"MuhNash\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/212905198?v=4\", \"provider_id\": \"212905198\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MuhNash\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:23:29.290683+00", + "updated_at": "2025-11-24 15:05:23.111729+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:23:29.308856+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 298, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9cb022e2-1f94-414d-b9cb-c1781d676a72", + "aud": "authenticated", + "role": "authenticated", + "email": "hhhh25737@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:41:19.978093+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:41:21.174319+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"107366447\", \"name\": \"Muhammad Ridwan\", \"email\": \"hhhh25737@gmail.com\", \"full_name\": \"Muhammad Ridwan\", \"user_name\": \"codewithwan\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/107366447?v=4\", \"provider_id\": \"107366447\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"codewithwan\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:41:19.972893+00", + "updated_at": "2025-11-23 14:41:21.177733+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:41:19.978093+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 299, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9cf09ee4-6ce0-4afe-a36e-9f472035cb34", + "aud": "authenticated", + "role": "authenticated", + "email": "samuelsiallagan49@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 19:48:03.616571+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 19:48:04.774184+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"210573891\", \"email\": \"samuelsiallagan49@gmail.com\", \"user_name\": \"samuelslgn\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/210573891?v=4\", \"provider_id\": \"210573891\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"samuelslgn\"}", + "is_super_admin": null, + "created_at": "2025-11-23 19:48:03.569394+00", + "updated_at": "2025-11-23 19:48:04.791646+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 19:48:03.616571+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 300, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9d4ccd3e-c2c1-4ef9-9fda-007403908ecc", + "aud": "authenticated", + "role": "authenticated", + "email": "sirrauf412@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:25:31.144539+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:50:58.609942+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"211968008\", \"name\": \"Sir Ananda Rauf\", \"email\": \"sirrauf412@gmail.com\", \"full_name\": \"Sir Ananda Rauf\", \"user_name\": \"sirrauf\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/211968008?v=4\", \"provider_id\": \"211968008\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sirrauf\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:25:31.139489+00", + "updated_at": "2025-11-24 14:41:05.437872+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:25:31.144539+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 301, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9d539268-8beb-4e57-80fd-6d2293776528", + "aud": "authenticated", + "role": "authenticated", + "email": "bentambunan20@gmail.com", + "encrypted_password": "$2a$10$.8FdvRrmX0WV2B/JkA3F.u40itKrsl5oGL1CC6EkX8IYUR4C0hmnS", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "5d0eea9203e0fd870315c55e86821b9be068a8b8eecc796b752a3e3a", + "confirmation_sent_at": "2025-11-24 04:05:49.764641+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"9d539268-8beb-4e57-80fd-6d2293776528\", \"email\": \"bentambunan20@gmail.com\", \"username\": \"rubentambunan\", \"display_name\": \"Ruben\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:05:49.741726+00", + "updated_at": "2025-11-24 04:05:51.524065+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 302, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9d8a38c3-e631-4b31-8f86-e3f6408f7330", + "aud": "authenticated", + "role": "authenticated", + "email": "falihafiq1928@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:42:53.130736+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:42:54.808838+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"67271354\", \"name\": \"Muhammad Falih Afiq\", \"email\": \"falihafiq1928@gmail.com\", \"full_name\": \"Muhammad Falih Afiq\", \"user_name\": \"Cenzer0\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/67271354?v=4\", \"provider_id\": \"67271354\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Cenzer0\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:42:53.080302+00", + "updated_at": "2025-11-24 13:42:54.84328+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:42:53.130736+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 303, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9e26cc6f-048d-41a1-b657-4f06f5198aaa", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadalfathir@smkwikrama.sch.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:08:56.545695+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:02:43.973329+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:08:57.24225+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"192281386\", \"email\": \"muhammadalfathir@smkwikrama.sch.id\", \"user_name\": \"fathir999\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/192281386?v=4\", \"provider_id\": \"192281386\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fathir999\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:02:43.965143+00", + "updated_at": "2025-11-24 08:38:48.65231+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:08:56.545695+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 304, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9e63c2d8-d2c2-4ac7-9c2e-226965c4f402", + "aud": "authenticated", + "role": "authenticated", + "email": "hazizhaziz549@gmail.com", + "encrypted_password": "$2a$10$ygDDDT2eVLzBnlmBZeqX1Oy425i3OvgdpPLhLi.HxUwPVMbNiRl3q", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "92e416119bcf31bb3e8b7610b0523f200361d4f23ef855c865f05e3a", + "confirmation_sent_at": "2025-11-24 04:44:28.611264+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"9e63c2d8-d2c2-4ac7-9c2e-226965c4f402\", \"email\": \"hazizhaziz549@gmail.com\", \"username\": \"febriyan\", \"display_name\": \"Febrian haziz\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:44:28.606229+00", + "updated_at": "2025-11-24 04:44:30.402423+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 305, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9eb70e94-b963-4f4c-9852-7f6e95e7987f", + "aud": "authenticated", + "role": "authenticated", + "email": "hekate071@gmail.com", + "encrypted_password": "$2a$10$0c/zEfbt.pfwHF0GRwTGYu2c/JT.aB7NQlrzCnFivSjuYOPPdbc7C", + "email_confirmed_at": "2025-11-23 22:16:38.102297+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 22:16:15.497541+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 22:16:56.21991+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"9eb70e94-b963-4f4c-9852-7f6e95e7987f\", \"email\": \"hekate071@gmail.com\", \"username\": \"aldiye\", \"display_name\": \"Al\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 22:16:15.42717+00", + "updated_at": "2025-11-23 22:16:56.224157+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 22:16:38.102297+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 306, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9f472bbd-aedb-49be-b8bf-0473d55f2622", + "aud": "authenticated", + "role": "authenticated", + "email": "mramdani1230@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:20:33.765294+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:20:34.794963+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"145679789\", \"name\": \"MRamdani\", \"email\": \"mramdani1230@gmail.com\", \"full_name\": \"MRamdani\", \"user_name\": \"MRamdani12\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/145679789?v=4\", \"provider_id\": \"145679789\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MRamdani12\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:20:33.760335+00", + "updated_at": "2025-11-23 13:20:34.79666+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:20:33.765294+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 307, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "9fece7da-1c1d-4e07-843c-9cd26aee60b5", + "aud": "authenticated", + "role": "authenticated", + "email": "dewarahmat1233@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:29:49.116454+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:36:28.083292+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"114587056\", \"name\": \"Matt\", \"email\": \"dewarahmat1233@gmail.com\", \"full_name\": \"Matt\", \"user_name\": \"MattYudha\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/114587056?v=4\", \"provider_id\": \"114587056\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MattYudha\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:29:49.111091+00", + "updated_at": "2025-11-24 14:58:15.853573+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:29:49.116454+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 308, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a0148ac9-002a-420e-bc23-ac7b3ee9a33c", + "aud": "authenticated", + "role": "authenticated", + "email": "derriverse@gmail.com", + "encrypted_password": "$2a$10$s5j6PekblvbguvZrlFU3WOIcG2OF5KZvy0qFDS5qI.sS8o0W4kIKK", + "email_confirmed_at": "2025-11-23 13:20:13.752925+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:19:33.521545+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:20:25.626481+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a0148ac9-002a-420e-bc23-ac7b3ee9a33c\", \"email\": \"derriverse@gmail.com\", \"username\": \"derribekool\", \"display_name\": \"Foryourdey\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:19:33.514964+00", + "updated_at": "2025-11-23 16:09:30.488559+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:20:13.752925+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 309, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a050ea6f-8d2c-4b4b-9f64-306517b63613", + "aud": "authenticated", + "role": "authenticated", + "email": "jalagohu@denipl.net", + "encrypted_password": "$2a$10$ICj3crQ2PiB72rVlcF/MMOr.NrZy46Vq2YptHpgM4bRTIFhL.PU4G", + "email_confirmed_at": "2025-11-23 14:41:15.12664+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:38:50.426366+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:57:39.136252+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a050ea6f-8d2c-4b4b-9f64-306517b63613\", \"email\": \"jalagohu@denipl.net\", \"username\": \"jalagohu\", \"display_name\": \"Jalagohu Denipl\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:38:50.420596+00", + "updated_at": "2025-11-24 12:52:37.786506+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:41:15.12664+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 310, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a2770339-e7e6-4b20-9cfe-99c8d2471930", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadrobisasaki@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:46:58.980872+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:46:59.828154+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"76561444\", \"name\": \"sasakirooo\", \"email\": \"muhammadrobisasaki@gmail.com\", \"full_name\": \"sasakirooo\", \"user_name\": \"sasakiRoo\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/76561444?v=4\", \"provider_id\": \"76561444\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sasakiRoo\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:46:58.96921+00", + "updated_at": "2025-11-24 01:46:59.831118+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:46:58.980872+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 311, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a2c1d665-f360-4cd8-a313-5fee29b91d6e", + "aud": "authenticated", + "role": "authenticated", + "email": "triwibowoilham2@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:57:51.923331+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:57:52.78259+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"39546259\", \"name\": \"Muhammad Ilham Triwibowo\", \"email\": \"triwibowoilham2@gmail.com\", \"full_name\": \"Muhammad Ilham Triwibowo\", \"user_name\": \"ZarelLast\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/39546259?v=4\", \"provider_id\": \"39546259\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ZarelLast\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:57:51.917087+00", + "updated_at": "2025-11-23 15:57:52.784459+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:57:51.923331+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 312, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a2e938b8-7403-4e25-bc34-63b9838983a6", + "aud": "authenticated", + "role": "authenticated", + "email": "yuratamma@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:30:22.282848+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:30:23.409371+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"79736504\", \"name\": \"Zidna Fadla\", \"email\": \"yuratamma@gmail.com\", \"full_name\": \"Zidna Fadla\", \"user_name\": \"zhinea\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/79736504?v=4\", \"provider_id\": \"79736504\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"zhinea\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:30:22.275562+00", + "updated_at": "2025-11-24 11:30:23.411472+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:30:22.282848+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 313, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a32c0e81-1fbd-4bec-8e91-4cd6d10f553b", + "aud": "authenticated", + "role": "authenticated", + "email": "sudo.rusydi@gmail.com", + "encrypted_password": "$2a$10$nwOod3X36ORzP7oN8QI2w.amkT4B9Vq9D/E4ExVA2XV04glbRpA.q", + "email_confirmed_at": "2025-11-23 13:10:33.524033+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:10:11.811542+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:10:42.21501+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a32c0e81-1fbd-4bec-8e91-4cd6d10f553b\", \"email\": \"sudo.rusydi@gmail.com\", \"username\": \"avadev\", \"display_name\": \"Kn1ght\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:10:11.806352+00", + "updated_at": "2025-11-24 15:07:02.027822+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:10:33.524033+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 314, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a42e221f-c198-463f-ac11-84060fd9b494", + "aud": "authenticated", + "role": "authenticated", + "email": "nazihelfikar68@gmail.com", + "encrypted_password": "$2a$10$Yi9Dr5IcUevEGWOzMz06/ugkJc3ZEyqR7M2zO6WI83FTZOkUBOQ2W", + "email_confirmed_at": "2025-11-24 03:08:16.923467+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:07:54.965216+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:08:21.338249+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a42e221f-c198-463f-ac11-84060fd9b494\", \"email\": \"nazihelfikar68@gmail.com\", \"username\": \"nazihelfikar\", \"display_name\": \"Nazih Elfikar\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:07:54.960407+00", + "updated_at": "2025-11-24 06:19:56.11032+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:08:16.923467+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 315, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a4c434da-2491-40b2-aa57-7b4aa53a69c1", + "aud": "authenticated", + "role": "authenticated", + "email": "adzthariq@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:28:24.960374+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:07:45.357502+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"148468654\", \"name\": \"Muhammd Thariq Adzikra\", \"email\": \"adzthariq@gmail.com\", \"full_name\": \"Muhammd Thariq Adzikra\", \"user_name\": \"ThariqAdzikra\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/148468654?v=4\", \"provider_id\": \"148468654\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ThariqAdzikra\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:28:24.946263+00", + "updated_at": "2025-11-24 14:07:45.360273+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:28:24.960374+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 316, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a53db442-4a6b-4431-afe1-b9d148b977fb", + "aud": "authenticated", + "role": "authenticated", + "email": "saintparid@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 14:41:50.492905+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 15:04:58.643319+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"82357480\", \"name\": \"Saint Jameson Parid\", \"email\": \"saintparid@gmail.com\", \"full_name\": \"Saint Jameson Parid\", \"user_name\": \"RiddSanz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/82357480?v=4\", \"provider_id\": \"82357480\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"RiddSanz\"}", + "is_super_admin": null, + "created_at": "2025-11-24 14:41:50.48608+00", + "updated_at": "2025-11-24 15:04:58.646556+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 14:41:50.492905+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 317, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a57807e3-bafb-4c4c-b23e-ba57c43c2cc2", + "aud": "authenticated", + "role": "authenticated", + "email": "asja77502@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:41:06.455892+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:41:08.221668+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"219818067\", \"name\": \"lioXploitcs \", \"email\": \"asja77502@gmail.com\", \"full_name\": \"lioXploitcs \", \"user_name\": \"lioXploitcs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/219818067?v=4\", \"provider_id\": \"219818067\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"lioXploitcs\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:41:06.449738+00", + "updated_at": "2025-11-23 13:41:08.223535+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:41:06.455892+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 318, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a5ea628a-24d9-4754-b461-3eda53da53bf", + "aud": "authenticated", + "role": "authenticated", + "email": "realdrenzzz@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:05:05.299755+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:05:06.911637+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"116653610\", \"name\": \"Drenzzz.\", \"email\": \"realdrenzzz@gmail.com\", \"full_name\": \"Drenzzz.\", \"user_name\": \"Drenzzz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/116653610?v=4\", \"provider_id\": \"116653610\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Drenzzz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:05:05.292936+00", + "updated_at": "2025-11-23 13:05:06.913385+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:05:05.299755+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 319, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a5ee4302-50ff-4463-8f47-9cf60b414960", + "aud": "authenticated", + "role": "authenticated", + "email": "maldenai76@gmail.com", + "encrypted_password": "$2a$10$qRG8h3QXLut5THQ0IZq0VerBqBkbCRDYSbwx9SpfdPq6dyZ1LkVsm", + "email_confirmed_at": "2025-11-23 16:52:25.655125+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:51:34.643786+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 17:04:11.237458+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a5ee4302-50ff-4463-8f47-9cf60b414960\", \"email\": \"maldenai76@gmail.com\", \"username\": \"namanyaalden\", \"display_name\": \"Namanya Alden\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:51:34.638633+00", + "updated_at": "2025-11-23 18:07:48.439763+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:52:25.655125+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 320, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a60c10f3-d73a-4953-8d2c-1e413c881470", + "aud": "authenticated", + "role": "authenticated", + "email": "yogaagustiansyah01@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:58:10.334377+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:58:24.495778+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"91954773\", \"name\": \"Yoga Agustiansyah\", \"email\": \"yogaagustiansyah01@gmail.com\", \"full_name\": \"Yoga Agustiansyah\", \"user_name\": \"yoga220802\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/91954773?v=4\", \"provider_id\": \"91954773\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"yoga220802\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:58:10.326544+00", + "updated_at": "2025-11-24 13:58:24.497669+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:58:10.334377+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 321, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a6acc3eb-6b59-4d31-881a-c4a1aecf8cfc", + "aud": "authenticated", + "role": "authenticated", + "email": "masuwha@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 10:58:02.886262+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:58:03.585101+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"238418624\", \"email\": \"masuwha@gmail.com\", \"user_name\": \"masuwha-rgb\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/238418624?v=4\", \"provider_id\": \"238418624\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"masuwha-rgb\"}", + "is_super_admin": null, + "created_at": "2025-11-24 10:58:02.878746+00", + "updated_at": "2025-11-24 10:58:03.589476+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 10:58:02.886262+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 322, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a81baf2a-b875-4c86-84ab-618f403abc60", + "aud": "authenticated", + "role": "authenticated", + "email": "jazaniezt07@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:29:07.161626+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:43:10.603992+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"115064945\", \"name\": \"M. Abdillah Aljazani\", \"email\": \"jazaniezt07@gmail.com\", \"full_name\": \"M. Abdillah Aljazani\", \"user_name\": \"Jazaniest\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/115064945?v=4\", \"provider_id\": \"115064945\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Jazaniest\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:29:07.155961+00", + "updated_at": "2025-11-24 15:18:03.507964+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:29:07.161626+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 323, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a8e87809-36a3-467e-8a49-8a730bb70724", + "aud": "authenticated", + "role": "authenticated", + "email": "rickogurning333@gmail.com", + "encrypted_password": "$2a$10$w08trgp0rlnshXi8MJ1z5.Gtw88veIIJmd1oktd9bsKFBuBYpa5qm", + "email_confirmed_at": "2025-11-23 13:22:48.813465+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:22:03.95851+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:23:00.403194+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a8e87809-36a3-467e-8a49-8a730bb70724\", \"email\": \"rickogurning333@gmail.com\", \"username\": \"ricknoelan\", \"display_name\": \"ricknoelan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:22:03.910557+00", + "updated_at": "2025-11-24 02:20:21.184083+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:22:48.813465+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 324, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a90a9400-0576-4708-8912-c630807b9391", + "aud": "authenticated", + "role": "authenticated", + "email": "zakyfarhan1326@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:38:54.905522+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:38:55.694667+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"107857352\", \"name\": \"Zaky Muhammad Fauzi\", \"email\": \"zakyfarhan1326@gmail.com\", \"full_name\": \"Zaky Muhammad Fauzi\", \"user_name\": \"ZakyFauzi\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/107857352?v=4\", \"provider_id\": \"107857352\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ZakyFauzi\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:38:54.899833+00", + "updated_at": "2025-11-23 14:38:55.697127+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:38:54.905522+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 325, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a91c8500-69fd-4602-9795-779d006a305e", + "aud": "authenticated", + "role": "authenticated", + "email": "sandysyarifhhartanto@gmail.com", + "encrypted_password": "$2a$10$j.qGgUtSAltPrxrvSh784OBx58qyZ6jjC1v0Cb1wM5pljILfeL4NK", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "620f6bc2b2bff10a0a50d26dc3a7d6abbe0d68d8875b61d8fb8543aa", + "confirmation_sent_at": "2025-11-24 05:47:06.706317+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a91c8500-69fd-4602-9795-779d006a305e\", \"email\": \"sandysyarifhhartanto@gmail.com\", \"username\": \"sandy_syh\", \"display_name\": \"Sandy\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 05:47:06.698637+00", + "updated_at": "2025-11-24 05:47:08.723751+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 326, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a927c690-8ebf-44eb-bf97-1d780729a2c4", + "aud": "authenticated", + "role": "authenticated", + "email": "andra.pratama@riswan.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:33:15.694546+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:37:08.518716+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"234110455\", \"email\": \"andra.pratama@riswan.com\", \"user_name\": \"AndraPratamaRiswan\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/234110455?v=4\", \"provider_id\": \"234110455\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AndraPratamaRiswan\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:33:15.683673+00", + "updated_at": "2025-11-24 05:37:08.520495+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:33:15.694546+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 327, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a93fd9dd-3e36-4ba1-b668-988dc2d186c6", + "aud": "authenticated", + "role": "authenticated", + "email": "naufalyuprata@gmail.com", + "encrypted_password": "$2a$10$F8Ho3jRFE3PlJxTXlUnsDukj0uhj7MgIk7qNd2Be7ev6hZV2wLHui", + "email_confirmed_at": "2025-11-23 15:28:10.898388+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:27:55.484541+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:31:13.75288+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a93fd9dd-3e36-4ba1-b668-988dc2d186c6\", \"email\": \"naufalyuprata@gmail.com\", \"username\": \"naufalyp\", \"display_name\": \"naufalyp\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:27:55.47972+00", + "updated_at": "2025-11-23 15:31:13.756181+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:28:10.898388+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 328, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a9807283-d4de-4990-8985-b22ded98e4cd", + "aud": "authenticated", + "role": "authenticated", + "email": "mubarrokwildan1@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:50:27.969462+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:46:34.374507+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:30:23.040285+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"180038802\", \"name\": \"Akazano_abe\", \"email\": \"mubarrokwildan1@gmail.com\", \"full_name\": \"Akazano_abe\", \"user_name\": \"DanKaza\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/180038802?v=4\", \"provider_id\": \"180038802\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"DanKaza\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:46:34.369311+00", + "updated_at": "2025-11-24 01:10:33.487422+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:50:27.969462+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 329, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a997e674-f927-474b-b817-9543f722aa9b", + "aud": "authenticated", + "role": "authenticated", + "email": "fackyouu128@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:16:42.979432+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:08:18.114718+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"41426658\", \"name\": \"Reza A Maulana \", \"email\": \"fackyouu128@gmail.com\", \"full_name\": \"Reza A Maulana \", \"user_name\": \"CallMeJaja\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/41426658?v=4\", \"provider_id\": \"41426658\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"CallMeJaja\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:16:42.971553+00", + "updated_at": "2025-11-24 04:20:49.82436+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:16:42.979432+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 330, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a9dfd864-faa1-452a-b074-8498e6e08af5", + "aud": "authenticated", + "role": "authenticated", + "email": "riantrito@gmail.com", + "encrypted_password": "$2a$10$RBZmZRAOJHaQkXGlcGfia.SqdpQwAxVnclwXAKGZ7nTBA5gi5q2re", + "email_confirmed_at": "2025-11-24 00:02:47.585652+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 00:02:01.024121+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 00:02:56.841041+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"a9dfd864-faa1-452a-b074-8498e6e08af5\", \"email\": \"riantrito@gmail.com\", \"username\": \"vellbound\", \"display_name\": \"Trapr\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 00:02:01.015365+00", + "updated_at": "2025-11-24 02:18:25.150071+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:02:47.585652+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 331, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "a9f7ded3-ed87-486b-bd11-0d4b3cb5d9a7", + "aud": "authenticated", + "role": "authenticated", + "email": "alhikam200@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:53:14.030484+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:57:29.805297+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"153430307\", \"name\": \"ΑlhikamΔirga⌘\", \"email\": \"alhikam200@gmail.com\", \"full_name\": \"ΑlhikamΔirga⌘\", \"user_name\": \"AlhikamWarsawa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/153430307?v=4\", \"provider_id\": \"153430307\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AlhikamWarsawa\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:53:14.015842+00", + "updated_at": "2025-11-24 16:09:35.025185+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:53:14.030484+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 332, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "aa088d9f-7251-4673-ad6b-88261666710b", + "aud": "authenticated", + "role": "authenticated", + "email": "afiffahriafrizall@gmail.com", + "encrypted_password": "$2a$10$I1feI1mKKru/rBkipC29Bel9J5oNWtFu3kiOaBagEz8eTbT2AoQE6", + "email_confirmed_at": "2025-11-23 13:38:55.445589+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:38:35.061713+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:39:00.074002+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"aa088d9f-7251-4673-ad6b-88261666710b\", \"email\": \"afiffahriafrizall@gmail.com\", \"username\": \"ufx0_\", \"display_name\": \"afif fahri\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:38:35.053041+00", + "updated_at": "2025-11-24 08:51:07.951664+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:38:55.445589+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 333, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "aa42b892-74dc-4a00-85b5-c7f78127c4e9", + "aud": "authenticated", + "role": "authenticated", + "email": "miawspecialist@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 17:24:46.283909+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 17:26:06.056088+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"180930338\", \"name\": \"iyep\", \"email\": \"miawspecialist@gmail.com\", \"full_name\": \"iyep\", \"user_name\": \"iyeppp\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/180930338?v=4\", \"provider_id\": \"180930338\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"iyeppp\"}", + "is_super_admin": null, + "created_at": "2025-11-23 17:24:46.249687+00", + "updated_at": "2025-11-23 17:26:06.057804+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 17:24:46.283909+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 334, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "aa4ba09e-4ed0-449c-ba98-5441844f022b", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammaddean27@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:15:25.835588+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:15:26.500239+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"85747206\", \"name\": \"Muhammad Dean Fahreza\", \"email\": \"muhammaddean27@gmail.com\", \"full_name\": \"Muhammad Dean Fahreza\", \"user_name\": \"dean-fahreza\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/85747206?v=4\", \"provider_id\": \"85747206\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"dean-fahreza\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:15:25.826768+00", + "updated_at": "2025-11-24 13:15:26.505339+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:15:25.835588+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 335, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "aa9d683d-0787-4279-8085-541459b1d8fa", + "aud": "authenticated", + "role": "authenticated", + "email": "harissabil04@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:45:56.276687+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:30:56.621907+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"97924751\", \"name\": \"Muhammad Haris Sabil Al Karim\", \"email\": \"harissabil04@gmail.com\", \"full_name\": \"Muhammad Haris Sabil Al Karim\", \"user_name\": \"harissabil\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/97924751?v=4\", \"provider_id\": \"97924751\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"harissabil\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:45:56.271301+00", + "updated_at": "2025-11-24 05:17:26.618155+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:45:56.276687+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 336, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ab36232b-b46c-4d30-8bb3-9b11e3e9ac7b", + "aud": "authenticated", + "role": "authenticated", + "email": "quyunisnawan34@gmail.com", + "encrypted_password": "$2a$10$GmaRDlnEQ3yVErQK6y4iIe8Ngnesqo5diev5Yv3i6h1cK4n1r5Dea", + "email_confirmed_at": "2025-11-24 07:09:15.825924+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 07:07:46.511702+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:09:27.297201+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"ab36232b-b46c-4d30-8bb3-9b11e3e9ac7b\", \"email\": \"quyunisnawan34@gmail.com\", \"username\": \"quyun\", \"display_name\": \"Quyun\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 07:07:46.504837+00", + "updated_at": "2025-11-24 07:09:27.299041+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:09:15.825924+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 337, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ab89f5c9-95fe-4808-81be-9bdc9c3b21ec", + "aud": "authenticated", + "role": "authenticated", + "email": "mnabilfs22@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:20:06.398065+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:20:08.085638+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"140305854\", \"name\": \"Muhammad Nabil Farras Sulthan\", \"email\": \"mnabilfs22@gmail.com\", \"full_name\": \"Muhammad Nabil Farras Sulthan\", \"user_name\": \"mnabilfs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/140305854?v=4\", \"provider_id\": \"140305854\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mnabilfs\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:20:06.392274+00", + "updated_at": "2025-11-24 08:59:18.014652+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:20:06.398065+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 338, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "aba1da85-d87b-4d52-bea9-35639c4f1d64", + "aud": "authenticated", + "role": "authenticated", + "email": "mochamadrifkyrifaldy@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:04:08.577349+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:04:10.26023+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"127107790\", \"name\": \"rifkyrifaldy\", \"email\": \"mochamadrifkyrifaldy@gmail.com\", \"full_name\": \"rifkyrifaldy\", \"user_name\": \"Rifaldy1292\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/127107790?v=4\", \"provider_id\": \"127107790\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Rifaldy1292\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:04:08.569517+00", + "updated_at": "2025-11-24 13:04:10.262095+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:04:08.577349+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 339, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ada3b4d9-745b-41c2-95b5-1a8275e29882", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadyustanzah@gmail.com", + "encrypted_password": "$2a$10$8tRpxfgM55OPeWnWlKe19eCPhdRzxRHAns3WTugD9gQUBwUUV1gsy", + "email_confirmed_at": "2025-11-23 14:13:23.948174+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:12:58.002627+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:13:36.607215+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"ada3b4d9-745b-41c2-95b5-1a8275e29882\", \"email\": \"muhammadyustanzah@gmail.com\", \"username\": \"yustanzah\", \"display_name\": \"YZ3IATLAS\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:12:57.993475+00", + "updated_at": "2025-11-24 05:01:30.961241+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:13:23.948174+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 340, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "adbd7ccc-252f-40c4-b5db-8940392da7e2", + "aud": "authenticated", + "role": "authenticated", + "email": "sulfikaralijun@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:25:07.854585+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:25:08.82138+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"116356678\", \"name\": \"Sulfikar Alijun\", \"email\": \"sulfikaralijun@gmail.com\", \"full_name\": \"Sulfikar Alijun\", \"user_name\": \"sulfikaralijun\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/116356678?v=4\", \"provider_id\": \"116356678\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sulfikaralijun\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:25:07.839339+00", + "updated_at": "2025-11-24 04:41:47.820164+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:25:07.854585+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 341, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "aef3f5b3-23b0-44e7-aa73-edab6ab20c6e", + "aud": "authenticated", + "role": "authenticated", + "email": "mitsuhaadly@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:25:45.479691+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:25:46.381413+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"75571386\", \"name\": \"Adeley\", \"email\": \"mitsuhaadly@gmail.com\", \"full_name\": \"Adeley\", \"user_name\": \"adeleeeeyyyy\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/75571386?v=4\", \"provider_id\": \"75571386\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"adeleeeeyyyy\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:25:45.470803+00", + "updated_at": "2025-11-24 06:37:07.452498+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:25:45.479691+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 342, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "af8d0e16-0358-4d96-b822-a4023b06752d", + "aud": "authenticated", + "role": "authenticated", + "email": "mobilezero24@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:30:17.792731+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:15:19.119386+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"142491488\", \"name\": \"Muhammad keisya fadilah\", \"email\": \"mobilezero24@gmail.com\", \"full_name\": \"Muhammad keisya fadilah\", \"user_name\": \"mkeisyafs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/142491488?v=4\", \"provider_id\": \"142491488\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mkeisyafs\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:30:17.787171+00", + "updated_at": "2025-11-24 08:31:21.957063+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:30:17.792731+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 343, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b022268c-2ac3-43a7-a5cf-c0bae568477a", + "aud": "authenticated", + "role": "authenticated", + "email": "arvardy@student.ub.ac.id", + "encrypted_password": "$2a$10$qohxVcJBiyI/av3rigxqzu4vVr.NFE15KPS.jpTjpcedC9H7/0SZy", + "email_confirmed_at": "2025-11-23 14:17:54.79591+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:17:33.127011+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:18:01.613915+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b022268c-2ac3-43a7-a5cf-c0bae568477a\", \"email\": \"arvardy@student.ub.ac.id\", \"username\": \"arvardy\", \"display_name\": \"Arvan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:17:33.11986+00", + "updated_at": "2025-11-24 04:21:31.087085+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:17:54.79591+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 344, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b04d2b39-25c2-4e65-a28f-8b35edeb6137", + "aud": "authenticated", + "role": "authenticated", + "email": "zulfikarm022@gmail.com", + "encrypted_password": "$2a$10$NsfcAY75osqIXpu.x/khdO7cvj3dLflWUljXKvfA7/viblvi9H3aC", + "email_confirmed_at": "2025-11-23 14:36:49.23126+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:35:47.018944+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:36:59.546349+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b04d2b39-25c2-4e65-a28f-8b35edeb6137\", \"email\": \"zulfikarm022@gmail.com\", \"username\": \"zuljago\", \"display_name\": \"Zul Malas Ngoding\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:35:47.013406+00", + "updated_at": "2025-11-23 17:01:08.859907+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:36:49.23126+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 345, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b1171213-ed39-4333-b58f-2424d3d2b9fe", + "aud": "authenticated", + "role": "authenticated", + "email": "hasrinata@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 17:40:47.36703+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 17:40:48.217578+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"122614361\", \"name\": \"Hasrinata Arya Afendi\", \"email\": \"hasrinata@gmail.com\", \"full_name\": \"Hasrinata Arya Afendi\", \"user_name\": \"Urdemonlord\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/122614361?v=4\", \"provider_id\": \"122614361\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Urdemonlord\"}", + "is_super_admin": null, + "created_at": "2025-11-23 17:40:47.332321+00", + "updated_at": "2025-11-24 02:58:26.010326+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 17:40:47.36703+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 346, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b1e1ba24-35fe-4dd7-b37f-77d42314b3d9", + "aud": "authenticated", + "role": "authenticated", + "email": "wahyuikbal777@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:06:23.628639+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:06:25.429315+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"96912274\", \"name\": \"wahyu ikbal maulana\", \"email\": \"wahyuikbal777@gmail.com\", \"full_name\": \"wahyu ikbal maulana\", \"user_name\": \"wahyudesu\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/96912274?v=4\", \"provider_id\": \"96912274\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"wahyudesu\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:06:23.597546+00", + "updated_at": "2025-11-24 02:06:25.440117+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:06:23.628639+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 347, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b21cde91-57f4-4f4e-b082-9130dcaff5a6", + "aud": "authenticated", + "role": "authenticated", + "email": "rafiadly259@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:38:12.079658+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:38:12.853234+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"179897591\", \"email\": \"rafiadly259@gmail.com\", \"user_name\": \"rafi-adly\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/179897591?v=4\", \"provider_id\": \"179897591\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rafi-adly\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:38:12.069291+00", + "updated_at": "2025-11-24 14:26:06.400616+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:38:12.079658+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 348, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b2208e46-26b9-497c-9105-7bfff4fd89f3", + "aud": "authenticated", + "role": "authenticated", + "email": "rakhaakbar522@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 17:27:34.8462+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 17:37:08.804735+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"184890424\", \"name\": \"Muhammad Rakha Akbar\", \"email\": \"rakhaakbar522@gmail.com\", \"full_name\": \"Muhammad Rakha Akbar\", \"user_name\": \"Rakha999888\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/184890424?v=4\", \"provider_id\": \"184890424\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Rakha999888\"}", + "is_super_admin": null, + "created_at": "2025-11-24 17:27:34.824326+00", + "updated_at": "2025-11-24 17:37:08.814758+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 17:27:34.8462+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 349, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b22a09b9-7079-49c9-9734-0f69f73cdd67", + "aud": "authenticated", + "role": "authenticated", + "email": "diwapraset02@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:16:35.624555+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:16:37.362489+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"103320912\", \"name\": \"Diwa\", \"email\": \"diwapraset02@gmail.com\", \"full_name\": \"Diwa\", \"user_name\": \"DiwaPrasetyo02\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/103320912?v=4\", \"provider_id\": \"103320912\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"DiwaPrasetyo02\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:16:35.59832+00", + "updated_at": "2025-11-24 02:16:37.379779+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:16:35.624555+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 350, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b26a5fba-f01d-49eb-a0ab-b0fa67d846a8", + "aud": "authenticated", + "role": "authenticated", + "email": "anakriryanda@gmail.com", + "encrypted_password": "$2a$10$1lUaOCAiRGSAfmNkGVnxh.V30voIFy2cM1Zl3TthgLlf.xtdmI/QC", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "553726efd1aad83f718932a8c7ab5cd16b93102a509c255bb674e287", + "confirmation_sent_at": "2025-11-24 04:51:13.652011+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b26a5fba-f01d-49eb-a0ab-b0fa67d846a8\", \"email\": \"anakriryanda@gmail.com\", \"username\": \"anakriryanda\", \"display_name\": \"Ryanda\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:51:13.643279+00", + "updated_at": "2025-11-24 04:51:15.430228+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 351, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b2fb784d-cf93-4d45-a8bf-0fbbefdb8761", + "aud": "authenticated", + "role": "authenticated", + "email": "sxntient.labs@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:10:17.926264+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:10:18.795163+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"234545727\", \"email\": \"sxntient.labs@gmail.com\", \"user_name\": \"sxntientlabs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/234545727?v=4\", \"provider_id\": \"234545727\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sxntientlabs\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:10:17.918602+00", + "updated_at": "2025-11-24 12:10:18.800907+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:10:17.926264+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 352, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b35057c8-d5c3-4e20-b027-025f3d959398", + "aud": "authenticated", + "role": "authenticated", + "email": "vlakasofficial@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:39:52.823416+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:39:55.134425+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"77152618\", \"name\": \"Fauzan\", \"email\": \"vlakasofficial@gmail.com\", \"full_name\": \"Fauzan\", \"user_name\": \"VlakasWB\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/77152618?v=4\", \"provider_id\": \"77152618\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"VlakasWB\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:39:52.817028+00", + "updated_at": "2025-11-23 16:39:55.136169+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:39:52.823416+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 353, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b43dfb80-8037-4478-a050-e28b0b0e243c", + "aud": "authenticated", + "role": "authenticated", + "email": "sandifadel739@gmail.com", + "encrypted_password": "$2a$10$IVrzVoRqILkchtHHehF8suz57FOWhntChV04sxUeodjIhMjC46TBq", + "email_confirmed_at": "2025-11-24 05:17:40.458585+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 05:16:51.545938+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:17:46.140646+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b43dfb80-8037-4478-a050-e28b0b0e243c\", \"email\": \"sandifadel739@gmail.com\", \"username\": \"muhamadfadel\", \"display_name\": \"Muhammaf Fadel\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 05:16:51.534106+00", + "updated_at": "2025-11-24 07:16:08.855911+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:17:40.458585+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 354, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b44432b9-c6ce-472c-b53b-fe6f838cc283", + "aud": "authenticated", + "role": "authenticated", + "email": "alfawwaz.naufal13@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 22:46:33.639441+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 22:46:34.475516+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"86101446\", \"name\": \"Naufal Al F\", \"email\": \"alfawwaz.naufal13@gmail.com\", \"full_name\": \"Naufal Al F\", \"user_name\": \"AlFawwaz13\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/86101446?v=4\", \"provider_id\": \"86101446\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AlFawwaz13\"}", + "is_super_admin": null, + "created_at": "2025-11-23 22:46:33.620609+00", + "updated_at": "2025-11-24 11:20:28.588476+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 22:46:33.639441+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 355, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b49fddfb-0be3-4d4f-a6d3-927c14ac9b81", + "aud": "authenticated", + "role": "authenticated", + "email": "ilhampradani8@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:06:37.468825+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:06:38.609626+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"233604955\", \"email\": \"ilhampradani8@gmail.com\", \"user_name\": \"ilhampradani8-bot\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/233604955?v=4\", \"provider_id\": \"233604955\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ilhampradani8-bot\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:06:37.451904+00", + "updated_at": "2025-11-24 14:38:35.598126+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:06:37.468825+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 356, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b4c53c87-6310-4143-bccf-94ee0440c17d", + "aud": "authenticated", + "role": "authenticated", + "email": "divoveenda@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 00:28:08.2833+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 00:28:09.152894+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"179323300\", \"name\": \"Veenda Putri Divo\", \"email\": \"divoveenda@gmail.com\", \"full_name\": \"Veenda Putri Divo\", \"user_name\": \"veenda\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/179323300?v=4\", \"provider_id\": \"179323300\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"veenda\"}", + "is_super_admin": null, + "created_at": "2025-11-24 00:28:08.257149+00", + "updated_at": "2025-11-24 00:28:09.164495+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:28:08.2833+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 357, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b50caf6d-e433-43d8-bef2-1ff073b13027", + "aud": "authenticated", + "role": "authenticated", + "email": "fazaradityarma@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:56:40.939164+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:56:41.600728+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"140429480\", \"name\": \"Faza\", \"email\": \"fazaradityarma@gmail.com\", \"full_name\": \"Faza\", \"user_name\": \"Fazani07\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/140429480?v=4\", \"provider_id\": \"140429480\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Fazani07\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:56:40.929553+00", + "updated_at": "2025-11-24 05:29:04.333532+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:56:40.939164+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 358, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b5113861-be40-4651-8ab2-33a8051656a7", + "aud": "authenticated", + "role": "authenticated", + "email": "muhyusufsyamsyam@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:57:02.342608+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:57:03.718692+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"54948391\", \"name\": \"Yusuf Syam\", \"email\": \"muhyusufsyamsyam@gmail.com\", \"full_name\": \"Yusuf Syam\", \"user_name\": \"YusufSyam\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/54948391?v=4\", \"provider_id\": \"54948391\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"YusufSyam\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:57:02.337039+00", + "updated_at": "2025-11-24 02:57:03.720503+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:57:02.342608+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 359, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b569b9c4-b173-45a4-b022-5bd0607e84be", + "aud": "authenticated", + "role": "authenticated", + "email": "koding12sam@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:22:57.000937+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:30:15.980849+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"42204593\", \"name\": \"Muel\", \"email\": \"koding12sam@gmail.com\", \"full_name\": \"Muel\", \"user_name\": \"diosamuel\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/42204593?v=4\", \"provider_id\": \"42204593\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"diosamuel\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:22:56.994359+00", + "updated_at": "2025-11-24 15:49:49.983997+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:22:57.000937+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 360, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b5a1b1e9-3bb5-4076-88a1-d36ce4dde6fc", + "aud": "authenticated", + "role": "authenticated", + "email": "zenaufa@hotmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:51:21.158134+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:51:22.081743+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"11049407\", \"email\": \"zenaufa@hotmail.com\", \"user_name\": \"zenaufa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/11049407?v=4\", \"provider_id\": \"11049407\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"zenaufa\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:51:21.15231+00", + "updated_at": "2025-11-24 08:31:42.144269+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:51:21.158134+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 361, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b6a3051f-1890-440e-9956-c380e2b5c139", + "aud": "authenticated", + "role": "authenticated", + "email": "naufalfadhilah689@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:37:37.742078+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:37:38.551488+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"117992655\", \"name\": \"Muhammad Naufal Fadhilah\", \"email\": \"naufalfadhilah689@gmail.com\", \"full_name\": \"Muhammad Naufal Fadhilah\", \"user_name\": \"nopalllfd\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/117992655?v=4\", \"provider_id\": \"117992655\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"nopalllfd\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:37:37.735312+00", + "updated_at": "2025-11-24 11:30:48.417389+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:37:37.742078+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 362, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b6ad4101-23d4-427c-9376-964cf995fc18", + "aud": "authenticated", + "role": "authenticated", + "email": "putrosrv@gmail.com", + "encrypted_password": "$2a$10$RjLgq/6OLX7m6js95w2rLOvU2fC1Ms/HNlEZ8a70Pr74GSn7q6h76", + "email_confirmed_at": "2025-11-24 05:19:38.804912+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 05:19:07.345233+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:20:05.864207+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b6ad4101-23d4-427c-9376-964cf995fc18\", \"email\": \"putrosrv@gmail.com\", \"username\": \"putrosrv\", \"display_name\": \"TROKA\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 05:19:07.335961+00", + "updated_at": "2025-11-24 11:10:00.618979+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:19:38.804912+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 363, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b732bc7c-b3c7-4a79-8529-4622445343f3", + "aud": "authenticated", + "role": "authenticated", + "email": "fajarskyy833@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:41:22.919856+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:41:23.845369+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"168846421\", \"email\": \"fajarskyy833@gmail.com\", \"user_name\": \"fajarbuchori\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/168846421?v=4\", \"provider_id\": \"168846421\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fajarbuchori\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:41:22.914029+00", + "updated_at": "2025-11-24 11:41:23.847227+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:41:22.919856+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 364, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b76b604d-9621-4aaf-bdf1-bc2da2f8248f", + "aud": "authenticated", + "role": "authenticated", + "email": "fuwafuwa@tiffincrane.com", + "encrypted_password": "$2a$10$2g0uYvFuaXZAlhGxJs4jaeemEwOTenoG/gm7m2CAkW4Z21DPH5Ude", + "email_confirmed_at": "2025-10-24 18:24:07.556693+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-10-24 18:23:41.614694+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-10-25 10:49:32.400632+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b76b604d-9621-4aaf-bdf1-bc2da2f8248f\", \"email\": \"fuwafuwa@tiffincrane.com\", \"username\": \"fuwafuwa\", \"display_name\": \"Fuwa Fuwa\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-10-24 18:23:41.523581+00", + "updated_at": "2025-10-25 10:49:32.417412+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-10-24 18:24:07.556693+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 365, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b7e71f93-6fce-4ef0-8eae-1a15634bcb9e", + "aud": "authenticated", + "role": "authenticated", + "email": "aminaprzaa@gmail.com", + "encrypted_password": "$2a$10$2WjEc6CAd08fANf3kkH3feRomzlvZz0hfsM4vUZbSsgOhXTY.PtNy", + "email_confirmed_at": "2025-11-24 02:54:39.018967+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 02:54:12.051967+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:54:44.403282+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b7e71f93-6fce-4ef0-8eae-1a15634bcb9e\", \"email\": \"aminaprzaa@gmail.com\", \"username\": \"dyahrul\", \"display_name\": \"Maulana Syahrul Ramadhan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 02:54:12.046504+00", + "updated_at": "2025-11-24 02:54:44.406941+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:54:39.018967+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 366, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b7f0d89b-6bdf-40dd-b5ca-442130b12c00", + "aud": "authenticated", + "role": "authenticated", + "email": "abdurrahman.hafizh02@gmail.com", + "encrypted_password": "$2a$10$1Pg6O5.FWMWwrdlV.6EYueK/PBIDwPw09AAdvNnX0DnxMA1DhvZnC", + "email_confirmed_at": "2025-11-23 16:39:00.245097+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:38:17.024357+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:54:59.6228+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b7f0d89b-6bdf-40dd-b5ca-442130b12c00\", \"email\": \"abdurrahman.hafizh02@gmail.com\", \"username\": \"mabdurrahmanhafizh_\", \"display_name\": \"Muhammad Abdurrahman Hafizh\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:38:17.017095+00", + "updated_at": "2025-11-24 15:51:04.039733+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:39:00.245097+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 367, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b8350a6f-621e-4c2f-9d2b-cf79c2a2f091", + "aud": "authenticated", + "role": "authenticated", + "email": "apriliyantoecha1@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 14:13:21.364802+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:13:22.376911+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"88275017\", \"name\": \"Echa Apriliyanto\", \"email\": \"apriliyantoecha1@gmail.com\", \"full_name\": \"Echa Apriliyanto\", \"user_name\": \"apirJS\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/88275017?v=4\", \"provider_id\": \"88275017\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"apirJS\"}", + "is_super_admin": null, + "created_at": "2025-11-24 14:13:21.332246+00", + "updated_at": "2025-11-24 14:13:22.397311+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 14:13:21.364802+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 368, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b864e321-9c43-422a-b980-c91809d3039a", + "aud": "authenticated", + "role": "authenticated", + "email": "rizkysrg62@gmail.com", + "encrypted_password": "$2a$10$yDVn6WbJCVZlgYErSiass.DQho/SlFRtmsRQAcr0i44I0oItEblZi", + "email_confirmed_at": "2025-11-23 16:50:01.814166+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:49:23.754106+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:10:28.284473+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b864e321-9c43-422a-b980-c91809d3039a\", \"email\": \"rizkysrg62@gmail.com\", \"username\": \"kyky62\", \"display_name\": \"KJW\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:49:23.746507+00", + "updated_at": "2025-11-24 03:10:28.286951+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:50:01.814166+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 369, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b9066990-a721-40f9-8478-5f806c80c751", + "aud": "authenticated", + "role": "authenticated", + "email": "kuncibatara@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:12:02.488777+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:12:05.632222+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"234961967\", \"email\": \"kuncibatara@gmail.com\", \"user_name\": \"Kuncibatara\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/234961967?v=4\", \"provider_id\": \"234961967\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Kuncibatara\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:12:02.48176+00", + "updated_at": "2025-11-23 16:39:43.523515+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:12:02.488777+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 370, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b96bc4aa-4a97-40cc-be49-2560df93751a", + "aud": "authenticated", + "role": "authenticated", + "email": "lotteaquamarine@comfythings.com", + "encrypted_password": "$2a$10$s/jQQxAHHXOIH.UhpgUozu/uzTR3C0Q0kBr8epDxc312mQF.wlngi", + "email_confirmed_at": "2025-11-21 06:30:44.714046+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-21 06:30:17.363704+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-21 12:36:12.884875+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b96bc4aa-4a97-40cc-be49-2560df93751a\", \"email\": \"lotteaquamarine@comfythings.com\", \"username\": \"lotteaquamarine\", \"display_name\": \"Lotte Aquamarine\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-21 06:30:17.341707+00", + "updated_at": "2025-11-23 15:21:31.604455+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-21 06:30:44.714046+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 371, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b9bb3ff3-5539-4b48-8101-90517a06cc42", + "aud": "authenticated", + "role": "authenticated", + "email": "zlutfhi89@gmail.com", + "encrypted_password": "$2a$10$5DdjY2ShMDCaoTwgYhBFOOd5Cdw9GqRLE.U.0cwBpVUbPnp5OEG2a", + "email_confirmed_at": "2025-11-23 13:41:43.554281+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:41:08.201297+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:41:47.886242+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"b9bb3ff3-5539-4b48-8101-90517a06cc42\", \"email\": \"zlutfhi89@gmail.com\", \"username\": \"nobygon\", \"display_name\": \"Nobynoby\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:41:08.196311+00", + "updated_at": "2025-11-24 16:01:38.085908+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:41:43.554281+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 372, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "b9ef4db0-6b7b-4dba-aef7-9434ce104e07", + "aud": "authenticated", + "role": "authenticated", + "email": "theownerkill432@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:59:37.153175+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:43:20.882431+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"98510825\", \"email\": \"theownerkill432@gmail.com\", \"user_name\": \"Ftthreign\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/98510825?v=4\", \"provider_id\": \"98510825\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Ftthreign\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:59:37.142761+00", + "updated_at": "2025-11-24 17:08:44.013547+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:59:37.153175+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 373, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bb1696b1-7f82-46fa-805b-6ec79e673e40", + "aud": "authenticated", + "role": "authenticated", + "email": "aryandasanggadiennata26@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:21:21.990797+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:21:23.111937+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"114203619\", \"name\": \"R3X\", \"email\": \"aryandasanggadiennata26@gmail.com\", \"full_name\": \"R3X\", \"user_name\": \"aryandaa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/114203619?v=4\", \"provider_id\": \"114203619\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"aryandaa\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:21:21.98555+00", + "updated_at": "2025-11-23 23:36:12.770596+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:21:21.990797+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 374, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bbbf243b-f08e-4911-b4bd-838200c50cb5", + "aud": "authenticated", + "role": "authenticated", + "email": "rickyricko302@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:30:43.807436+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:30:45.428475+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"36351625\", \"name\": \"Ricky Verdiyanto\", \"email\": \"rickyricko302@gmail.com\", \"full_name\": \"Ricky Verdiyanto\", \"user_name\": \"rickyricko302\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/36351625?v=4\", \"provider_id\": \"36351625\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rickyricko302\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:30:43.799939+00", + "updated_at": "2025-11-24 03:30:45.430967+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:30:43.807436+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 375, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bbc5e3e7-cd72-4739-81c6-199876b02084", + "aud": "authenticated", + "role": "authenticated", + "email": "nalindasepti@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:56:16.660333+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:56:18.175813+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"230069074\", \"email\": \"nalindasepti@gmail.com\", \"user_name\": \"nalindasepti-ship-it\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/230069074?v=4\", \"provider_id\": \"230069074\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"nalindasepti-ship-it\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:56:16.650109+00", + "updated_at": "2025-11-24 08:56:18.180041+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:56:16.660333+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 376, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bbfac7a8-2a13-48a2-9f29-499f33d68b8c", + "aud": "authenticated", + "role": "authenticated", + "email": "gamerzcraft37@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 00:51:46.600395+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 00:51:47.983639+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"92112218\", \"name\": \"Gazach\", \"email\": \"gamerzcraft37@gmail.com\", \"full_name\": \"Gazach\", \"user_name\": \"Gazach\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/92112218?v=4\", \"provider_id\": \"92112218\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Gazach\"}", + "is_super_admin": null, + "created_at": "2025-11-24 00:51:46.584347+00", + "updated_at": "2025-11-24 00:51:47.98764+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:51:46.600395+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 377, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bc02bb7b-8193-4ddc-b8ca-d858b212de2e", + "aud": "authenticated", + "role": "authenticated", + "email": "rewyzzi@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:56:57.115674+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:50:54.598592+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"198454389\", \"email\": \"rewyzzi@gmail.com\", \"user_name\": \"wyzzi834\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/198454389?v=4\", \"provider_id\": \"198454389\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"wyzzi834\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:56:57.107958+00", + "updated_at": "2025-11-24 14:56:58.134163+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:56:57.115674+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 378, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bc2bec53-ee17-40f7-9640-9556745a171a", + "aud": "authenticated", + "role": "authenticated", + "email": "alfanhuda2004@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:36:50.359358+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:36:52.659977+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"84297612\", \"name\": \"Alfanhuda\", \"email\": \"alfanhuda2004@gmail.com\", \"full_name\": \"Alfanhuda\", \"user_name\": \"alternatif-omg\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/84297612?v=4\", \"provider_id\": \"84297612\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"alternatif-omg\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:36:50.34068+00", + "updated_at": "2025-11-24 07:36:52.663504+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:36:50.359358+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 379, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bd35df8a-9a78-4b14-aa8b-8366e9de58bd", + "aud": "authenticated", + "role": "authenticated", + "email": "tengkusripratiwi1608@gmail.com", + "encrypted_password": "$2a$10$D2rTW4gf7K2FLRXYKWFi0uKapJDa80J5jsUadiTQbld5kfpwiTAJq", + "email_confirmed_at": "2025-11-24 08:24:49.307448+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 08:23:57.456143+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:53:51.319118+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"bd35df8a-9a78-4b14-aa8b-8366e9de58bd\", \"email\": \"tengkusripratiwi1608@gmail.com\", \"username\": \"tiiwii\", \"display_name\": \"Tengku Sri Pratiwi\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 08:23:57.440422+00", + "updated_at": "2025-11-24 08:53:51.321524+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:24:49.307448+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 380, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bdb30d1b-9754-4333-b7e0-bce7e7f9ebda", + "aud": "authenticated", + "role": "authenticated", + "email": "bataraa@proton.me", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:23:39.192137+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:29:50.216598+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"150235532\", \"name\": \"Batara Krisna Danduru\", \"email\": \"bataraa@proton.me\", \"full_name\": \"Batara Krisna Danduru\", \"user_name\": \"Lmavour\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/150235532?v=4\", \"provider_id\": \"150235532\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Lmavour\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:23:39.182653+00", + "updated_at": "2025-11-24 11:18:52.452586+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:23:39.192137+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 381, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "be5f3f84-3435-4800-b019-3b6564113004", + "aud": "authenticated", + "role": "authenticated", + "email": "hayyannashrulloh25@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:44:56.545334+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:44:57.365809+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"245783367\", \"email\": \"hayyannashrulloh25@gmail.com\", \"user_name\": \"hayyan-hhh\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/245783367?v=4\", \"provider_id\": \"245783367\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"hayyan-hhh\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:44:56.533047+00", + "updated_at": "2025-11-24 02:44:57.368975+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:44:56.545334+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 382, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "be83a7e1-abf4-43ca-a23c-d335449b844f", + "aud": "authenticated", + "role": "authenticated", + "email": "050393537@ecampus.ut.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:21:41.768523+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:21:42.860592+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"142473573\", \"name\": \"Fahrur Rozi\", \"email\": \"050393537@ecampus.ut.ac.id\", \"full_name\": \"Fahrur Rozi\", \"user_name\": \"fahrurxz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/142473573?v=4\", \"provider_id\": \"142473573\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fahrurxz\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:21:41.759016+00", + "updated_at": "2025-11-24 04:23:35.723933+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:21:41.768523+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 383, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "be9d3160-e00e-4547-bbdd-c6546fe0af71", + "aud": "authenticated", + "role": "authenticated", + "email": "arivopwenz@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:43:29.335202+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:43:30.361462+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"208137713\", \"name\": \"Ari Prabowo\", \"email\": \"arivopwenz@gmail.com\", \"full_name\": \"Ari Prabowo\", \"user_name\": \"arivopwenz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/208137713?v=4\", \"provider_id\": \"208137713\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"arivopwenz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:43:29.328419+00", + "updated_at": "2025-11-24 05:40:20.290675+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:43:29.335202+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 384, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "beb5d548-c976-4110-87f2-75d4f8465e2b", + "aud": "authenticated", + "role": "authenticated", + "email": "faaldy16@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 15:02:06.881709+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 15:02:08.179118+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"104994710\", \"name\": \"Aldi Fauzi Ilmamuslim\", \"email\": \"faaldy16@gmail.com\", \"full_name\": \"Aldi Fauzi Ilmamuslim\", \"user_name\": \"aldifzi\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/104994710?v=4\", \"provider_id\": \"104994710\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"aldifzi\"}", + "is_super_admin": null, + "created_at": "2025-11-24 15:02:06.869436+00", + "updated_at": "2025-11-24 15:02:08.181387+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 15:02:06.881709+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 385, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bef2164a-6f12-4d69-847e-5d6ac19f554f", + "aud": "authenticated", + "role": "authenticated", + "email": "arbasfardan@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:54:19.336603+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:54:20.932889+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"158092508\", \"name\": \"Fardan Arbaz\", \"email\": \"arbasfardan@gmail.com\", \"full_name\": \"Fardan Arbaz\", \"user_name\": \"fardann-arbazz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/158092508?v=4\", \"provider_id\": \"158092508\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fardann-arbazz\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:54:19.324842+00", + "updated_at": "2025-11-24 16:49:34.929495+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:54:19.336603+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 386, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bef8c2ba-c959-4896-a0d3-463e2f77570b", + "aud": "authenticated", + "role": "authenticated", + "email": "bwfzbw@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:46:50.194061+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:10:56.178979+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"148263297\", \"name\": \"jarss (zharfan)\", \"email\": \"bwfzbw@gmail.com\", \"full_name\": \"jarss (zharfan)\", \"user_name\": \"Yowhathvb\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/148263297?v=4\", \"provider_id\": \"148263297\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Yowhathvb\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:46:50.185672+00", + "updated_at": "2025-11-24 12:44:09.782481+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:46:50.194061+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 387, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bf0d6b84-0508-4917-8ff5-e23e1d3ce23b", + "aud": "authenticated", + "role": "authenticated", + "email": "nabielilyasa133@gmail.com", + "encrypted_password": "$2a$10$WkDbqkEUH4ZxHV5et/onn.teQfOkKrMBFXUA7dDp78t1RTRe0GE4.", + "email_confirmed_at": "2025-11-23 16:43:25.735245+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:40:51.093523+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 18:01:34.643691+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"bf0d6b84-0508-4917-8ff5-e23e1d3ce23b\", \"email\": \"nabielilyasa133@gmail.com\", \"username\": \"nabielilyasa_\", \"display_name\": \"nayaka\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:40:50.99734+00", + "updated_at": "2025-11-24 11:25:59.464079+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:43:25.735245+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 388, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "bfacc996-8020-41fe-b323-c5c3dac7f425", + "aud": "authenticated", + "role": "authenticated", + "email": "xecloud4@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 06:22:20.487321+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:22:21.570967+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"215096301\", \"name\": \"A. Abqory\", \"email\": \"xecloud4@gmail.com\", \"full_name\": \"A. Abqory\", \"user_name\": \"abqoryme\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/215096301?v=4\", \"provider_id\": \"215096301\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"abqoryme\"}", + "is_super_admin": null, + "created_at": "2025-11-24 06:22:20.479902+00", + "updated_at": "2025-11-24 06:22:21.575403+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:22:20.487321+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 389, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c00a24fd-44b7-477a-9048-05007fdfd76e", + "aud": "authenticated", + "role": "authenticated", + "email": "christiannathanielp@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:04:56.788364+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:04:58.132156+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"114709222\", \"name\": \"Christian Nathaniel\", \"email\": \"christiannathanielp@gmail.com\", \"full_name\": \"Christian Nathaniel\", \"user_name\": \"ChristianNathanielP\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/114709222?v=4\", \"provider_id\": \"114709222\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ChristianNathanielP\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:04:56.770383+00", + "updated_at": "2025-11-24 04:04:58.148788+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:04:56.788364+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 390, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c048d109-8d91-49f2-b04f-fc86866c1487", + "aud": "authenticated", + "role": "authenticated", + "email": "ardyrkm23@gmail.com", + "encrypted_password": "$2a$10$EnEASaccj77/sDHv7ho6.uQ8PI76m8T1WAa/FDirH7J4p06e5I/vm", + "email_confirmed_at": "2025-11-24 02:56:23.017108+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 02:52:55.751636+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:56:29.935291+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"c048d109-8d91-49f2-b04f-fc86866c1487\", \"email\": \"ardyrkm23@gmail.com\", \"username\": \"ardayrkm\", \"display_name\": \"ardayrkm\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 02:52:55.727525+00", + "updated_at": "2025-11-24 11:51:09.059725+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:56:23.017108+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 391, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c084728e-f1c0-4775-b0b5-10ab0441bab6", + "aud": "authenticated", + "role": "authenticated", + "email": "risfarishk@gmail.com", + "encrypted_password": "$2a$10$r04Ee.BBB72D1nlp0N8WmevFCTqruorSlQseS986rj4MezSawsLXi", + "email_confirmed_at": "2025-11-23 13:28:55.33824+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:28:33.686418+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:28:59.818102+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"c084728e-f1c0-4775-b0b5-10ab0441bab6\", \"email\": \"risfarishk@gmail.com\", \"username\": \"akuaparis\", \"display_name\": \"akuparis\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:28:33.680767+00", + "updated_at": "2025-11-23 13:28:59.820095+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:28:55.33824+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 392, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c0f6b85a-4723-484d-8fdf-713f7e5aa9f7", + "aud": "authenticated", + "role": "authenticated", + "email": "awannshafwan@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 23:50:15.099025+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 23:50:16.249402+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"241875981\", \"name\": \"Awan\", \"email\": \"awannshafwan@gmail.com\", \"full_name\": \"Awan\", \"user_name\": \"shakaeru\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/241875981?v=4\", \"provider_id\": \"241875981\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"shakaeru\"}", + "is_super_admin": null, + "created_at": "2025-11-23 23:50:15.089798+00", + "updated_at": "2025-11-23 23:50:16.253676+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 23:50:15.099025+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 393, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c19ad425-8df8-4b37-8f35-797767f48672", + "aud": "authenticated", + "role": "authenticated", + "email": "willygurning14@gmail.com", + "encrypted_password": "$2a$10$g6BoRccfy6vsSH0vlj/CI.fLS0e2mn9zKOwBGfPP/bbvbxw/0tu3K", + "email_confirmed_at": "2025-11-24 01:21:30.436423+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 01:21:00.835615+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:21:47.080708+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"c19ad425-8df8-4b37-8f35-797767f48672\", \"email\": \"willygurning14@gmail.com\", \"username\": \"willygurning\", \"display_name\": \"Willy Gurning\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 01:21:00.792723+00", + "updated_at": "2025-11-24 16:39:33.003738+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:21:30.436423+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 394, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c288a2df-a1e6-4beb-a6ea-aab0b7f912df", + "aud": "authenticated", + "role": "authenticated", + "email": "0110224081@student.nurulfikri.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:52:39.665562+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:52:40.665239+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"145128380\", \"name\": \"Raffa Yuda Pratama\", \"email\": \"0110224081@student.nurulfikri.ac.id\", \"full_name\": \"Raffa Yuda Pratama\", \"user_name\": \"raffayuda\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/145128380?v=4\", \"provider_id\": \"145128380\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"raffayuda\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:52:39.659694+00", + "updated_at": "2025-11-24 14:24:36.783921+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:52:39.665562+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 395, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c478b5f7-fc09-4b97-8354-e8889f852450", + "aud": "authenticated", + "role": "authenticated", + "email": "240605110160@student.uin-malang.ac.id", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:52:57.418278+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:52:58.597494+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"203177285\", \"email\": \"240605110160@student.uin-malang.ac.id\", \"user_name\": \"ghufron99119\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/203177285?v=4\", \"provider_id\": \"203177285\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ghufron99119\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:52:57.411662+00", + "updated_at": "2025-11-24 13:52:58.601803+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:52:57.418278+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 396, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c4aa882a-bfc2-4a1c-a9e7-89f9a37b9fba", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadsultansyah14@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:55:47.408959+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:55:48.266259+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"67671815\", \"name\": \"Muhammad Sultansyah\", \"email\": \"muhammadsultansyah14@gmail.com\", \"full_name\": \"Muhammad Sultansyah\", \"user_name\": \"sultansyah\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/67671815?v=4\", \"provider_id\": \"67671815\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sultansyah\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:55:47.40061+00", + "updated_at": "2025-11-24 11:05:58.564911+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:55:47.408959+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 397, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c5611544-3041-4a31-866a-84ad0b781aca", + "aud": "authenticated", + "role": "authenticated", + "email": "grecyllagrecy@gmail.com", + "encrypted_password": "$2a$10$iF5ORnXT2mfh8cYzLTV0MejLjp9mXo6VPAfHsY42xXIAjqpjTgXl6", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "acf673928f91d80997535bdba55042dd1a1c1b12e4d8d6f032187fac", + "confirmation_sent_at": "2025-11-24 03:04:20.877869+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"c5611544-3041-4a31-866a-84ad0b781aca\", \"email\": \"grecyllagrecy@gmail.com\", \"username\": \"grecyllasido\", \"display_name\": \"heyyciz\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 02:52:32.424452+00", + "updated_at": "2025-11-24 03:04:22.714461+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 398, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c5ecbd2b-8d7b-4440-a75e-2bb58b1ed8cb", + "aud": "authenticated", + "role": "authenticated", + "email": "ilhamthaariq@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:23:47.477421+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:55:39.064064+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"184460815\", \"name\": \"Muhammad Ilham Rijal Thaariq\", \"email\": \"ilhamthaariq@gmail.com\", \"full_name\": \"Muhammad Ilham Rijal Thaariq\", \"user_name\": \"IlhamThrq\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/184460815?v=4\", \"provider_id\": \"184460815\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"IlhamThrq\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:23:47.425307+00", + "updated_at": "2025-11-24 15:53:51.319033+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:23:47.477421+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 399, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c6323853-13e3-49dc-972c-a7cb789f0b32", + "aud": "authenticated", + "role": "authenticated", + "email": "basukiridhoalghifary@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:47:18.040975+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:05:37.869789+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"179932292\", \"name\": \"basukiridho\", \"email\": \"basukiridhoalghifary@gmail.com\", \"full_name\": \"basukiridho\", \"user_name\": \"Ridhsuki\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/179932292?v=4\", \"provider_id\": \"179932292\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Ridhsuki\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:47:18.034512+00", + "updated_at": "2025-11-24 12:50:48.715562+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:47:18.040975+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 400, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c6dab1e3-8177-4784-936b-364a9e58a076", + "aud": "authenticated", + "role": "authenticated", + "email": "kacunghabibiganteng@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 12:56:21.525281+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 12:56:22.946413+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"51292148\", \"name\": \"KacungHabibi™\", \"email\": \"kacunghabibiganteng@gmail.com\", \"full_name\": \"KacungHabibi™\", \"user_name\": \"ferasas\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/51292148?v=4\", \"provider_id\": \"51292148\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ferasas\"}", + "is_super_admin": null, + "created_at": "2025-11-23 12:56:21.516219+00", + "updated_at": "2025-11-23 12:56:22.948187+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 12:56:21.525281+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 401, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c79d4b2b-e63f-4187-a8cd-520fde333ab3", + "aud": "authenticated", + "role": "authenticated", + "email": "nhardiansa@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:09:33.613157+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:22:15.802628+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"44939789\", \"name\": \"Nabil Hardiansa\", \"email\": \"nhardiansa@gmail.com\", \"full_name\": \"Nabil Hardiansa\", \"user_name\": \"nhardiansa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/44939789?v=4\", \"provider_id\": \"44939789\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"nhardiansa\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:09:33.604532+00", + "updated_at": "2025-11-24 13:18:18.621195+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:09:33.613157+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 402, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c8f35350-384f-4933-be59-d785dbe06abc", + "aud": "authenticated", + "role": "authenticated", + "email": "bhosya27@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:42:04.577415+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:51:16.981874+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"89555084\", \"name\": \"Bowoksae\", \"email\": \"bhosya27@gmail.com\", \"full_name\": \"Bowoksae\", \"user_name\": \"Bhosya\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/89555084?v=4\", \"provider_id\": \"89555084\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Bhosya\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:42:04.563505+00", + "updated_at": "2025-11-24 12:30:53.990664+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:42:04.577415+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 403, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c92b26ed-ddc1-45e7-9a17-f2d2ea7b9d2f", + "aud": "authenticated", + "role": "authenticated", + "email": "m.sadiqin46@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 17:05:27.077724+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 17:13:18.83559+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"90381036\", \"name\": \"MuhammadSadiqin\", \"email\": \"m.sadiqin46@gmail.com\", \"full_name\": \"MuhammadSadiqin\", \"user_name\": \"MuhammadSadiqin\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/90381036?v=4\", \"provider_id\": \"90381036\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MuhammadSadiqin\"}", + "is_super_admin": null, + "created_at": "2025-11-23 17:05:27.047265+00", + "updated_at": "2025-11-24 15:18:28.494611+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 17:05:27.077724+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 404, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c978891b-71d3-423a-8c97-5648304f5a47", + "aud": "authenticated", + "role": "authenticated", + "email": "gayuyunma1123@gmail.com", + "encrypted_password": "$2a$10$FDe07wuxDh25RajWNhu80e/1F0QziP84XpgKnkISPYV8ccuY52yqq", + "email_confirmed_at": "2025-11-23 15:27:36.035229+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:27:04.085099+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:27:53.459472+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"c978891b-71d3-423a-8c97-5648304f5a47\", \"email\": \"gayuyunma1123@gmail.com\", \"username\": \"gayu123\", \"display_name\": \"Gayu Yunma Ramadhan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:27:04.078521+00", + "updated_at": "2025-11-23 15:27:53.461735+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:27:36.035229+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 405, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "c9b2c04a-5027-4ccb-bd0b-2c26c7e9f619", + "aud": "authenticated", + "role": "authenticated", + "email": "akbarriffani19@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:08:26.335728+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:11:52.990204+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"162766288\", \"name\": \"LebahRajin\", \"email\": \"akbarriffani19@gmail.com\", \"full_name\": \"LebahRajin\", \"user_name\": \"LebahLapar\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/162766288?v=4\", \"provider_id\": \"162766288\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"LebahLapar\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:08:26.327886+00", + "updated_at": "2025-11-23 13:11:52.992073+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:08:26.335728+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 406, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ca299304-dfa7-49ba-aa1d-0ed259ffe0fc", + "aud": "authenticated", + "role": "authenticated", + "email": "ajangrahmat@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:31:11.130619+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:31:11.757087+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"41977490\", \"name\": \"Ajang Rahmat\", \"email\": \"ajangrahmat@gmail.com\", \"full_name\": \"Ajang Rahmat\", \"user_name\": \"ajangrahmat\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/41977490?v=4\", \"provider_id\": \"41977490\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ajangrahmat\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:31:11.116221+00", + "updated_at": "2025-11-23 16:31:11.760212+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:31:11.130619+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 407, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "caa569eb-822e-418c-93aa-df23563a178c", + "aud": "authenticated", + "role": "authenticated", + "email": "auliyanihlah@gmail.com", + "encrypted_password": "$2a$10$aaVR8IYYeM9XVtJrxbriTu0Vucrtvcmb14wnDgN3hUQg0dTAfKC7S", + "email_confirmed_at": "2025-11-24 02:46:28.336583+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 02:46:03.834436+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:46:31.817248+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"caa569eb-822e-418c-93aa-df23563a178c\", \"email\": \"auliyanihlah@gmail.com\", \"username\": \"xiee\", \"display_name\": \"Nihlah.A\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 02:46:03.827313+00", + "updated_at": "2025-11-24 11:22:10.955468+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:46:28.336583+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 408, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "caaaf8b5-ac4b-40b5-9549-f0f8ec9d6cd1", + "aud": "authenticated", + "role": "authenticated", + "email": "razandirgham@gmail.com", + "encrypted_password": "$2a$10$KhBYTjzoPJd9L6qkhQfxduBm26pMn/DsPuj2oK2unRc3lsoXj/Iri", + "email_confirmed_at": "2025-11-23 15:14:08.554537+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:13:42.793815+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:14:24.193861+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"caaaf8b5-ac4b-40b5-9549-f0f8ec9d6cd1\", \"email\": \"razandirgham@gmail.com\", \"username\": \"apitod\", \"display_name\": \"apithods\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:13:42.77124+00", + "updated_at": "2025-11-23 16:29:34.714579+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:14:08.554537+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 409, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "cabaade4-b256-4798-844a-78f36cb16b0b", + "aud": "authenticated", + "role": "authenticated", + "email": "profadlibae@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 15:32:18.169459+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 15:32:18.881348+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"37434467\", \"name\": \"Acmad Fadli Aditama\", \"email\": \"profadlibae@gmail.com\", \"full_name\": \"Acmad Fadli Aditama\", \"user_name\": \"fadliaditama\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/37434467?v=4\", \"provider_id\": \"37434467\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fadliaditama\"}", + "is_super_admin": null, + "created_at": "2025-11-24 15:32:18.157083+00", + "updated_at": "2025-11-24 15:32:18.884585+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 15:32:18.169459+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 410, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "cb2161a5-7c09-4360-908b-f2e629be1cda", + "aud": "authenticated", + "role": "authenticated", + "email": "atnandimas@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 14:56:04.877293+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:56:09.09189+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"110810678\", \"name\": \"Adnan Rohmat K\", \"email\": \"atnandimas@gmail.com\", \"full_name\": \"Adnan Rohmat K\", \"user_name\": \"AdnanRohmatKurniansah\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/110810678?v=4\", \"provider_id\": \"110810678\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AdnanRohmatKurniansah\"}", + "is_super_admin": null, + "created_at": "2025-11-24 14:56:04.857354+00", + "updated_at": "2025-11-24 15:55:57.639979+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 14:56:04.877293+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 411, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "cc7e4a74-7c3d-44cd-af91-a1b9326cb13e", + "aud": "authenticated", + "role": "authenticated", + "email": "sitizahraazizah23@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:28:16.742168+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:28:17.487938+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"114201606\", \"name\": \"Siti Zahra Azizah\", \"email\": \"sitizahraazizah23@gmail.com\", \"full_name\": \"Siti Zahra Azizah\", \"user_name\": \"m4tchachu\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/114201606?v=4\", \"provider_id\": \"114201606\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"m4tchachu\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:28:16.736005+00", + "updated_at": "2025-11-23 13:28:17.490251+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:28:16.742168+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 412, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "cd64c94d-ca81-4169-bb4d-e2af2dba4a55", + "aud": "authenticated", + "role": "authenticated", + "email": "nurdin99.ek@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:07:52.428733+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:07:54.684794+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"72847760\", \"name\": \"Nurdin\", \"email\": \"nurdin99.ek@gmail.com\", \"full_name\": \"Nurdin\", \"user_name\": \"Nuu12d11n\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/72847760?v=4\", \"provider_id\": \"72847760\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Nuu12d11n\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:07:52.421483+00", + "updated_at": "2025-11-23 13:07:54.68664+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:07:52.428733+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 413, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "cd7ebe7e-a914-457f-be95-2e6256342552", + "aud": "authenticated", + "role": "authenticated", + "email": "fauzanhabib56@gmail.com", + "encrypted_password": "$2a$10$V.sgNdi00rvTryk.ZRaR9esYCQ50ahjPBJGK8prYsTlzstSSkR69i", + "email_confirmed_at": "2025-11-23 16:53:54.055153+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:53:12.671379+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:57:41.683749+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"cd7ebe7e-a914-457f-be95-2e6256342552\", \"email\": \"fauzanhabib56@gmail.com\", \"username\": \"fauzanhabib\", \"display_name\": \"sayasendiri\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:53:12.662885+00", + "updated_at": "2025-11-23 16:57:41.685609+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:53:54.055153+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 414, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "cdab11c6-ef41-4e2c-ad9d-f9636681e9f0", + "aud": "authenticated", + "role": "authenticated", + "email": "reyhananf7@gmail.com", + "encrypted_password": "$2a$10$E776SXc7hrh48IXdR2M3k.k4f8M/yrfTncPW20N7Gc/CTkSIoszqK", + "email_confirmed_at": "2025-11-23 14:44:48.346433+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:44:05.498516+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:45:14.40457+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"cdab11c6-ef41-4e2c-ad9d-f9636681e9f0\", \"email\": \"reyhananf7@gmail.com\", \"username\": \"reyhananf\", \"display_name\": \"Reyhan Firdaus\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:44:05.491747+00", + "updated_at": "2025-11-23 16:32:40.110307+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:44:48.346433+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 415, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ce458e26-313e-47cd-937d-e5e95f77a136", + "aud": "authenticated", + "role": "authenticated", + "email": "loidthegost@gmail.com", + "encrypted_password": "$2a$10$Dz6FcNT97QqIyOnqUJayee6CwfTFmCO6YQBB7tu15uFzv5U9GqGOW", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "10edd6c573e25dcd65f46a959ea1f39ed319b4121493b291902df863", + "confirmation_sent_at": "2025-11-23 15:35:59.624108+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"ce458e26-313e-47cd-937d-e5e95f77a136\", \"email\": \"loidthegost@gmail.com\", \"username\": \"loidggwp\", \"display_name\": \"Loid\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:35:59.617625+00", + "updated_at": "2025-11-23 15:36:01.484966+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 416, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "cf1eadaa-a313-4760-808e-37dc70446ccf", + "aud": "authenticated", + "role": "authenticated", + "email": "omnidevv@gmail.com", + "encrypted_password": "$2a$10$QaeoBKM4tIx8Sj44tUdTYuCBaqdWx6uzJvi80iG40mNLGRnmtd9fS", + "email_confirmed_at": "2025-11-23 21:53:08.410707+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 21:52:39.082269+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 21:53:16.537235+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"cf1eadaa-a313-4760-808e-37dc70446ccf\", \"email\": \"omnidevv@gmail.com\", \"username\": \"omnidev\", \"display_name\": \"Abdul Malik\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 21:52:38.984194+00", + "updated_at": "2025-11-24 01:34:09.837858+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 21:53:08.410707+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 417, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "cfc296db-5cd7-4485-b8d0-ba330f5c148c", + "aud": "authenticated", + "role": "authenticated", + "email": "m.ilhamjaya1808@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:24:17.108072+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:09:38.560772+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"141555404\", \"name\": \"Muhammad Ilham Jaya \", \"email\": \"m.ilhamjaya1808@gmail.com\", \"full_name\": \"Muhammad Ilham Jaya \", \"user_name\": \"ilhamjaya08\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/141555404?v=4\", \"provider_id\": \"141555404\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ilhamjaya08\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:24:17.096559+00", + "updated_at": "2025-11-24 10:03:16.86581+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:24:17.108072+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 418, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d00b9542-2bc4-4a1c-acca-e2e58f7363e5", + "aud": "authenticated", + "role": "authenticated", + "email": "risbulgt@gmail.com", + "encrypted_password": "$2a$10$JT8wRPUyqrez0z22.lKcSuzerTZ7KvE.C/cRnDsOnT6fa4jyXaqWW", + "email_confirmed_at": "2025-11-23 16:03:17.855648+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 16:02:43.75254+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:23:35.318375+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"d00b9542-2bc4-4a1c-acca-e2e58f7363e5\", \"email\": \"risbulgt@gmail.com\", \"username\": \"risbul\", \"display_name\": \"Risbul\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 16:02:43.743319+00", + "updated_at": "2025-11-23 16:23:35.320317+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:03:17.855648+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 419, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d15d8329-a248-4339-8090-69c40ca2a050", + "aud": "authenticated", + "role": "authenticated", + "email": "lembahku@gmail.com", + "encrypted_password": "$2a$10$sm2tQkjxdaQ9zvpEwDd6GudQqqt6NkEQl1dY3oPaM6vTTnNeGLLA6", + "email_confirmed_at": "2025-11-24 05:18:40.783605+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 05:18:18.624556+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:37:34.909356+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"d15d8329-a248-4339-8090-69c40ca2a050\", \"email\": \"lembahku@gmail.com\", \"username\": \"lembah\", \"display_name\": \"Elem\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 05:18:18.618135+00", + "updated_at": "2025-11-24 05:37:34.911164+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:18:40.783605+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 420, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d1c950e6-fb9e-4d53-9c2c-e77477a9a1eb", + "aud": "authenticated", + "role": "authenticated", + "email": "fcrizkywijaya@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:12:59.818935+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:55:23.904944+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"60763063\", \"name\": \"Farid Rizky Wijaya\", \"email\": \"fcrizkywijaya@gmail.com\", \"full_name\": \"Farid Rizky Wijaya\", \"user_name\": \"far-id\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/60763063?v=4\", \"provider_id\": \"60763063\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"far-id\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:12:59.811764+00", + "updated_at": "2025-11-24 03:41:17.178772+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:12:59.818935+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 421, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d263ee7e-e4fb-4b55-a5d9-0207520e0fa8", + "aud": "authenticated", + "role": "authenticated", + "email": "bimaadam.dev@gmail.com", + "encrypted_password": "$2a$10$4hUQ1I.5A0/BDvajWSTsVetDaPI3REpaB8CsMeBcREU6Hc./zPrPW", + "email_confirmed_at": "2025-11-23 14:43:25.997764+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:43:08.16935+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:43:31.509454+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"d263ee7e-e4fb-4b55-a5d9-0207520e0fa8\", \"email\": \"bimaadam.dev@gmail.com\", \"username\": \"bimaadam\", \"display_name\": \"Bima Adam\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:43:08.123129+00", + "updated_at": "2025-11-23 14:43:31.511265+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:43:25.997764+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 422, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d350da40-7543-4073-b6a5-95c79d705dd3", + "aud": "authenticated", + "role": "authenticated", + "email": "felixarajiph@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:48:07.162913+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:48:07.802747+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"24404157\", \"name\": \"Rajiph iqbal\", \"email\": \"felixarajiph@gmail.com\", \"full_name\": \"Rajiph iqbal\", \"user_name\": \"felixa1243\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/24404157?v=4\", \"provider_id\": \"24404157\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"felixa1243\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:48:07.157197+00", + "updated_at": "2025-11-23 16:48:07.804579+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:48:07.162913+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 423, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d396661f-c733-4991-a212-76b9e4ecb02c", + "aud": "authenticated", + "role": "authenticated", + "email": "ahmadfawwaz103@gmail.com", + "encrypted_password": "$2a$10$ZTPrq5PXxJVNGWNr.FcaiuxveBnSra5wQy/BTH44lkhGN6JGW2o6O", + "email_confirmed_at": "2025-11-24 08:34:04.357692+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 08:33:43.918919+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:34:28.271725+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"d396661f-c733-4991-a212-76b9e4ecb02c\", \"email\": \"ahmadfawwaz103@gmail.com\", \"username\": \"ahmad_fawwaz\", \"display_name\": \"amdfz\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 08:33:43.910528+00", + "updated_at": "2025-11-24 08:34:28.278419+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:34:04.357692+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 424, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d44ab980-6982-46b3-8da5-fafef0dedd9f", + "aud": "authenticated", + "role": "authenticated", + "email": "hafizpramudya17@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:13:14.601787+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:13:15.555916+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"142154060\", \"name\": \"Nflz\", \"email\": \"hafizpramudya17@gmail.com\", \"full_name\": \"Nflz\", \"user_name\": \"N0Xzyzy\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/142154060?v=4\", \"provider_id\": \"142154060\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"N0Xzyzy\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:13:14.570573+00", + "updated_at": "2025-11-24 07:12:39.396344+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:13:14.601787+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 425, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d4953c02-1a07-476c-b5ca-7dfd1e91d28c", + "aud": "authenticated", + "role": "authenticated", + "email": "johnobama24keren@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:20:46.344498+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:20:47.439352+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"159476448\", \"name\": \"Hiuaaaaa\", \"email\": \"johnobama24keren@gmail.com\", \"full_name\": \"Hiuaaaaa\", \"user_name\": \"JohnObama24\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/159476448?v=4\", \"provider_id\": \"159476448\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"JohnObama24\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:20:46.337576+00", + "updated_at": "2025-11-24 12:36:57.639889+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:20:46.344498+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 426, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d4d2c768-3296-40fa-8c87-3bf0b9a54fac", + "aud": "authenticated", + "role": "authenticated", + "email": "aliakbar06110@gmail.com", + "encrypted_password": "$2a$10$hN5GPTAG3oDZ1027/gcXKOkfGMiCOJiJabsXMKgENEtRiFnj8QFa.", + "email_confirmed_at": "2025-11-24 04:19:15.292326+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:18:57.553965+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:19:19.017667+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"d4d2c768-3296-40fa-8c87-3bf0b9a54fac\", \"email\": \"aliakbar06110@gmail.com\", \"username\": \"aliakbar061\", \"display_name\": \"Ali Akbar\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:18:57.543767+00", + "updated_at": "2025-11-24 11:19:41.084836+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:19:15.292326+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 427, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d5ff8a92-2b82-42b9-a143-2cd8c376c1ef", + "aud": "authenticated", + "role": "authenticated", + "email": "sanjaya28051@gmail.com", + "encrypted_password": "$2a$10$IsrCXqLW5hbMGtkO2Drd1ub06S4ENqgqriw8b1IZT8ISaEU8/uzWK", + "email_confirmed_at": "2025-11-23 15:47:37.780407+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:47:17.513427+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:47:41.635388+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"d5ff8a92-2b82-42b9-a143-2cd8c376c1ef\", \"email\": \"sanjaya28051@gmail.com\", \"username\": \"sanjaya28051\", \"display_name\": \"Rizky Sanjaya\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:47:17.505875+00", + "updated_at": "2025-11-23 15:47:41.63714+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:47:37.780407+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 428, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d731aa31-8893-4496-ad36-db71729e3419", + "aud": "authenticated", + "role": "authenticated", + "email": "nawvalovsky@proton.me", + "encrypted_password": "$2a$10$rKEClPiGLMBi12XG5k33AumEO/B9aTKF9CdzsXFfJ67NawRha6OoS", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "d6a179b886ebcf2bb56f8a7aa75c539a5d65fc429712f7b54dd32b48", + "confirmation_sent_at": "2025-11-23 14:24:48.479923+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"d731aa31-8893-4496-ad36-db71729e3419\", \"email\": \"nawvalovsky@proton.me\", \"username\": \"nawvalovsky\", \"display_name\": \"Nawvalovsky Valskaya\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:18:14.717428+00", + "updated_at": "2025-11-23 14:24:50.154395+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 429, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d744ffbb-7011-43b6-a4f8-7ef2f105ba12", + "aud": "authenticated", + "role": "authenticated", + "email": "agung.astanto14@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:43:25.855879+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:43:27.028025+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"153066618\", \"email\": \"agung.astanto14@gmail.com\", \"user_name\": \"agungast\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/153066618?v=4\", \"provider_id\": \"153066618\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"agungast\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:43:25.848628+00", + "updated_at": "2025-11-24 11:43:27.031831+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:43:25.855879+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 430, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d7587b8e-51fb-404b-ae31-7f5a86c85119", + "aud": "authenticated", + "role": "authenticated", + "email": "yumpp24@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:41:56.659502+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:41:57.422758+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"245395468\", \"email\": \"yumpp24@gmail.com\", \"user_name\": \"yumpp24\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/245395468?v=4\", \"provider_id\": \"245395468\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"yumpp24\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:41:56.640072+00", + "updated_at": "2025-11-24 05:41:57.428641+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:41:56.659502+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 431, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d8f27598-3fed-47da-be14-86c59f70387a", + "aud": "authenticated", + "role": "authenticated", + "email": "novandiramadhan80@gmail.com", + "encrypted_password": "$2a$10$9pK4Okds7pWSg/uA8xcmj.fSQ99/DVe8r9tPLB7qj4qg8RE/fM27q", + "email_confirmed_at": "2025-11-24 04:44:18.536021+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 04:43:53.717871+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:44:23.674211+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"d8f27598-3fed-47da-be14-86c59f70387a\", \"email\": \"novandiramadhan80@gmail.com\", \"username\": \"kelazking\", \"display_name\": \"Novandi Ramadhan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 04:43:53.69064+00", + "updated_at": "2025-11-24 04:44:23.676036+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:44:18.536021+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 432, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d937a04d-da2e-46e0-9e38-b36d244f8daa", + "aud": "authenticated", + "role": "authenticated", + "email": "sfatimaple@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:31:21.388388+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:31:22.407063+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"68051766\", \"name\": \"Sfatimah Azzahra\", \"email\": \"sfatimaple@gmail.com\", \"full_name\": \"Sfatimah Azzahra\", \"user_name\": \"miguroi\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/68051766?v=4\", \"provider_id\": \"68051766\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"miguroi\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:31:21.378153+00", + "updated_at": "2025-11-23 13:31:22.408789+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:31:21.388388+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 433, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d938e47a-5a8d-41c2-9952-c42c7d83f291", + "aud": "authenticated", + "role": "authenticated", + "email": "andriscreen@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:03:01.247294+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:03:02.506505+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"147832221\", \"name\": \"Andri Irawan\", \"email\": \"andriscreen@gmail.com\", \"full_name\": \"Andri Irawan\", \"user_name\": \"andriscreen\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/147832221?v=4\", \"provider_id\": \"147832221\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"andriscreen\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:03:01.224805+00", + "updated_at": "2025-11-24 03:03:02.533388+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:03:01.247294+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 434, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d9a4b3e0-eed5-4c63-984f-096a8fb0a03d", + "aud": "authenticated", + "role": "authenticated", + "email": "suryami62@outlook.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 00:18:07.35672+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:56:00.475093+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"64825473\", \"name\": \"Surya Ramadhan\", \"email\": \"suryami62@outlook.com\", \"full_name\": \"Surya Ramadhan\", \"user_name\": \"suryami62\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/64825473?v=4\", \"provider_id\": \"64825473\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"suryami62\"}", + "is_super_admin": null, + "created_at": "2025-11-24 00:18:07.341879+00", + "updated_at": "2025-11-24 14:50:31.696875+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:18:07.35672+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 435, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "d9b2f557-027c-4c2e-85e0-f157f2df4917", + "aud": "authenticated", + "role": "authenticated", + "email": "abdalhaqqm@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 19:25:29.049218+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 19:25:30.106814+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"63442570\", \"name\": \"Abdalhaqq Muhammad Saih\", \"email\": \"abdalhaqqm@gmail.com\", \"full_name\": \"Abdalhaqq Muhammad Saih\", \"user_name\": \"dalhaqq\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/63442570?v=4\", \"provider_id\": \"63442570\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"dalhaqq\"}", + "is_super_admin": null, + "created_at": "2025-11-23 19:25:28.994749+00", + "updated_at": "2025-11-23 19:25:30.137275+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 19:25:29.049218+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 436, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "da349dec-eee1-4ed4-bd97-d8322f1ab36e", + "aud": "authenticated", + "role": "authenticated", + "email": "alijun.dev@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:41:12.287173+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:41:13.43963+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"214382619\", \"name\": \"Sulfikar Alijun\", \"email\": \"alijun.dev@gmail.com\", \"full_name\": \"Sulfikar Alijun\", \"user_name\": \"alijundev\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/214382619?v=4\", \"provider_id\": \"214382619\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"alijundev\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:41:12.277412+00", + "updated_at": "2025-11-24 05:41:14.502311+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:41:12.287173+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 437, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "daaf8fd0-2660-4462-990b-9eab46df6f47", + "aud": "authenticated", + "role": "authenticated", + "email": "warsenosetyono@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:46:04.249882+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:46:07.421398+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"105684275\", \"name\": \"Warseno\", \"email\": \"warsenosetyono@gmail.com\", \"full_name\": \"Warseno\", \"user_name\": \"Wrseno\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/105684275?v=4\", \"provider_id\": \"105684275\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Wrseno\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:46:04.244906+00", + "updated_at": "2025-11-23 15:44:25.121284+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:46:04.249882+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 438, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "db3ca0d6-67c6-48c0-9da1-e4b45ca3f921", + "aud": "authenticated", + "role": "authenticated", + "email": "kemasmuhammadalqodri@gmail.com", + "encrypted_password": "$2a$10$AHKtKeOwwRqV46ZIEQONVeqvndd2KyP5j7UEkCVIK0uncDVIUfOPy", + "email_confirmed_at": null, + "invited_at": null, + "confirmation_token": "e5294158218d581a5135b2dadafc1775fef0336282ee9b91f10ff0e0", + "confirmation_sent_at": "2025-11-23 13:59:40.353774+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": null, + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"db3ca0d6-67c6-48c0-9da1-e4b45ca3f921\", \"email\": \"kemasmuhammadalqodri@gmail.com\", \"username\": \"aldri24\", \"display_name\": \"Al Qodri\", \"email_verified\": false, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:59:40.348967+00", + "updated_at": "2025-11-23 13:59:42.366606+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": null, + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 439, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "dd022635-06ed-4ce2-85c1-7026c954e5c7", + "aud": "authenticated", + "role": "authenticated", + "email": "fadlankurahan2@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 15:02:37.10438+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:56:11.498381+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"104897512\", \"email\": \"fadlankurahan2@gmail.com\", \"user_name\": \"FadlanBM\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/104897512?v=4\", \"provider_id\": \"104897512\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"FadlanBM\"}", + "is_super_admin": null, + "created_at": "2025-11-24 15:02:37.04241+00", + "updated_at": "2025-11-24 16:56:11.507837+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 15:02:37.10438+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 440, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "dd38bb9b-c45d-4ce2-b4b3-f99b8c8d7e82", + "aud": "authenticated", + "role": "authenticated", + "email": "iqbalharimurti1@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:10:34.058263+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:10:34.784233+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"117517427\", \"name\": \"krenz\", \"email\": \"iqbalharimurti1@gmail.com\", \"full_name\": \"krenz\", \"user_name\": \"sabzeruz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/117517427?v=4\", \"provider_id\": \"117517427\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"sabzeruz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:10:34.04256+00", + "updated_at": "2025-11-24 10:18:35.310971+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:10:34.058263+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 441, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "dde9ea50-6a95-4a73-a7cf-0c1e9e457c56", + "aud": "authenticated", + "role": "authenticated", + "email": "obarya24@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 18:31:15.089179+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 18:31:16.007245+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"89384083\", \"name\": \"Afdaan\", \"email\": \"obarya24@gmail.com\", \"full_name\": \"Afdaan\", \"user_name\": \"Afdaan\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/89384083?v=4\", \"provider_id\": \"89384083\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Afdaan\"}", + "is_super_admin": null, + "created_at": "2025-11-23 18:31:15.072428+00", + "updated_at": "2025-11-23 18:31:16.011643+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 18:31:15.089179+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 442, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "de072603-83a0-4d19-b601-d7bd25534d3d", + "aud": "authenticated", + "role": "authenticated", + "email": "jexawe1022@okcdeals.com", + "encrypted_password": "$2a$10$WpnDwAWBnxN7FT3wq/UDdOMKExW4JvMnjUYF6C.yXjLEGn5587XUe", + "email_confirmed_at": "2025-11-20 13:23:50.403915+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-20 12:56:31.968917+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-20 13:24:36.153502+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"de072603-83a0-4d19-b601-d7bd25534d3d\", \"email\": \"jexawe1022@okcdeals.com\", \"username\": \"johndoe\", \"display_name\": \"John Doe\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-20 12:56:31.861845+00", + "updated_at": "2025-11-20 14:24:45.925835+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-20 13:23:50.403915+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 443, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "de4190a8-2a66-4e96-aaf6-c3fb0ca838a7", + "aud": "authenticated", + "role": "authenticated", + "email": "mdjauharil29@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:24:45.41249+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 08:25:03.554599+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"110438744\", \"name\": \"Areal\", \"email\": \"mdjauharil29@gmail.com\", \"full_name\": \"Areal\", \"user_name\": \"mcDJIL\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/110438744?v=4\", \"provider_id\": \"110438744\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mcDJIL\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:24:45.406687+00", + "updated_at": "2025-11-24 08:25:03.611853+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:24:45.41249+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 444, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "dea38d11-ef5f-492c-b107-17b509326138", + "aud": "authenticated", + "role": "authenticated", + "email": "diasdigital03@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:53:16.176113+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:53:16.739607+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"78405123\", \"name\": \"Dias\", \"email\": \"diasdigital03@gmail.com\", \"full_name\": \"Dias\", \"user_name\": \"diasdigital\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/78405123?v=4\", \"provider_id\": \"78405123\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"diasdigital\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:53:16.159666+00", + "updated_at": "2025-11-24 07:53:16.755039+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:53:16.176113+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 445, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "df939ac3-de24-473c-8006-cf512fec4e10", + "aud": "authenticated", + "role": "authenticated", + "email": "apirahman55@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-18 12:19:04.242216+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-18 12:19:04.984322+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"46511932\", \"name\": \"Api Dev\", \"email\": \"apirahman55@gmail.com\", \"full_name\": \"Api Dev\", \"user_name\": \"apirahman55\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/46511932?v=4\", \"provider_id\": \"46511932\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"apirahman55\"}", + "is_super_admin": null, + "created_at": "2025-11-18 12:19:04.213708+00", + "updated_at": "2025-11-18 12:19:04.991691+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-18 12:19:04.242216+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 446, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "dfad62ce-3285-4d1d-8ad6-8cb3a618a3e8", + "aud": "authenticated", + "role": "authenticated", + "email": "rvlionxz@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:38:16.729495+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:08:27.677196+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"102757284\", \"name\": \"Reval Maulidan\", \"email\": \"rvlionxz@gmail.com\", \"full_name\": \"Reval Maulidan\", \"user_name\": \"RvLionXz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/102757284?v=4\", \"provider_id\": \"102757284\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"RvLionXz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:38:16.724444+00", + "updated_at": "2025-11-24 00:11:54.341525+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:38:16.729495+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 447, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e09e8094-49ae-4cb0-9e25-8cb548f6b37e", + "aud": "authenticated", + "role": "authenticated", + "email": "tsqf.hx@gmail.com", + "encrypted_password": "$2a$10$db3p5EUHz21LKzyiAGOF6eZge3cndxb1IbNAuqR1cHyxaopNO7uji", + "email_confirmed_at": "2025-11-23 15:31:26.236667+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:30:59.366605+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:31:37.323686+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e09e8094-49ae-4cb0-9e25-8cb548f6b37e\", \"email\": \"tsqf.hx@gmail.com\", \"username\": \"tsaaqfhh\", \"display_name\": \"tsaaqfhh\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:30:59.349578+00", + "updated_at": "2025-11-23 15:31:37.327182+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:31:26.236667+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 448, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e18f82ff-7809-4274-b81c-b3dae3bac731", + "aud": "authenticated", + "role": "authenticated", + "email": "bloomsky133@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:23:58.079188+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:13:38.418156+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"236199600\", \"email\": \"bloomsky133@gmail.com\", \"user_name\": \"blomm00\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/236199600?v=4\", \"provider_id\": \"236199600\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"blomm00\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:23:58.047549+00", + "updated_at": "2025-11-24 02:34:39.702627+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:23:58.079188+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 449, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e198581d-62bc-4098-8dc8-94302face1d9", + "aud": "authenticated", + "role": "authenticated", + "email": "asepharyanalm001@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:50:57.163959+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:58:49.62911+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"90584806\", \"name\": \"Asep Haryana Saputra\", \"email\": \"asepharyanalm001@gmail.com\", \"full_name\": \"Asep Haryana Saputra\", \"user_name\": \"MythEclipse\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/90584806?v=4\", \"provider_id\": \"90584806\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MythEclipse\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:50:57.154419+00", + "updated_at": "2025-11-24 15:30:24.347988+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:50:57.163959+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 450, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e1dc4e80-c85e-440f-977e-32ac86ac4a8e", + "aud": "authenticated", + "role": "authenticated", + "email": "kussokurae990@gmail.com", + "encrypted_password": "$2a$10$X.Fmtud.SirywYxJcIszT.Pxik.87yTue5LdjAGlgPkVx23cBDQy6", + "email_confirmed_at": "2025-11-23 14:35:38.372281+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:35:02.97219+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:35:55.841463+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e1dc4e80-c85e-440f-977e-32ac86ac4a8e\", \"email\": \"kussokurae990@gmail.com\", \"username\": \"tarutaru\", \"display_name\": \"Taru\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:35:02.948451+00", + "updated_at": "2025-11-24 02:42:37.559382+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:35:38.372281+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 451, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e210703d-e0f2-493a-b976-ad02b714fd4d", + "aud": "authenticated", + "role": "authenticated", + "email": "kaoricicak000@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:48:49.754684+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:48:51.113314+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"210276605\", \"email\": \"kaoricicak000@gmail.com\", \"user_name\": \"Kurukuruuuuuuuuuu\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/210276605?v=4\", \"provider_id\": \"210276605\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Kurukuruuuuuuuuuu\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:48:49.747592+00", + "updated_at": "2025-11-23 13:48:51.115266+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:48:49.754684+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 452, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e21dbd95-0379-4087-84d4-735a7e280990", + "aud": "authenticated", + "role": "authenticated", + "email": "felixvalentino58@gmail.com", + "encrypted_password": "$2a$10$LTAd.V7SdFRLONGFWPdEv.7iVL7NC5xEdOSHHcvqGXqc6lFe0CclG", + "email_confirmed_at": "2025-11-23 13:49:08.547645+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:48:48.131936+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:59:32.213547+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e21dbd95-0379-4087-84d4-735a7e280990\", \"email\": \"felixvalentino58@gmail.com\", \"username\": \"orangtzy\", \"display_name\": \"Felix P.V.\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:48:48.124908+00", + "updated_at": "2025-11-23 13:59:32.215438+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:49:08.547645+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 453, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e2248b8b-b6cb-4a9c-9746-eba0bc8d03ce", + "aud": "authenticated", + "role": "authenticated", + "email": "ferdialf.dev@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:26:01.947703+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:26:02.605477+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"147571673\", \"name\": \"FerdiAlfian_\", \"email\": \"ferdialf.dev@gmail.com\", \"full_name\": \"FerdiAlfian_\", \"user_name\": \"ferdi-alf\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/147571673?v=4\", \"provider_id\": \"147571673\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"ferdi-alf\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:26:01.939917+00", + "updated_at": "2025-11-24 18:38:39.591269+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:26:01.947703+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 454, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e26b3480-1f75-4038-9c73-c5db5c478e08", + "aud": "authenticated", + "role": "authenticated", + "email": "rafiqgans32@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:13:54.575936+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:16:54.351803+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"217239982\", \"name\": \"Ainur Rafiq\", \"email\": \"rafiqgans32@gmail.com\", \"full_name\": \"Ainur Rafiq\", \"user_name\": \"Rafiq32\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/217239982?v=4\", \"provider_id\": \"217239982\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Rafiq32\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:13:54.570286+00", + "updated_at": "2025-11-23 13:16:54.353711+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:13:54.575936+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 455, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e27f8e2b-2ba4-41c8-8ef1-1a1c8299ec38", + "aud": "authenticated", + "role": "authenticated", + "email": "thed0704@gmail.com", + "encrypted_password": "$2a$10$SKK5uIv604un55KY2Y60B.rRSMwHp8V1sewGjV46R.wxvAZaohZJy", + "email_confirmed_at": "2025-11-20 13:22:11.002542+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-20 13:21:41.024003+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-20 13:22:15.640511+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e27f8e2b-2ba4-41c8-8ef1-1a1c8299ec38\", \"email\": \"thed0704@gmail.com\", \"username\": \"thed0704\", \"display_name\": \"Thed\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-20 13:21:41.008047+00", + "updated_at": "2025-11-23 15:35:59.312748+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-20 13:22:11.002542+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 456, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e4747f46-e751-4e42-8190-5c8be219d50e", + "aud": "authenticated", + "role": "authenticated", + "email": "voidstayprivate@proton.me", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:06:03.574116+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:06:10.431523+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"236817869\", \"name\": \"Corteza Familia\", \"email\": \"voidstayprivate@proton.me\", \"full_name\": \"Corteza Familia\", \"user_name\": \"stellarunner\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/236817869?v=4\", \"provider_id\": \"236817869\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"stellarunner\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:06:03.567853+00", + "updated_at": "2025-11-23 13:06:10.433251+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:06:03.574116+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 457, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e5770488-35c2-4298-a97e-b79f863c0c2a", + "aud": "authenticated", + "role": "authenticated", + "email": "hoshikochan93@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 04:41:28.841641+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:41:29.862598+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"93799964\", \"name\": \"Rechan Dinata\", \"email\": \"hoshikochan93@gmail.com\", \"full_name\": \"Rechan Dinata\", \"user_name\": \"Zreechxnn\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/93799964?v=4\", \"provider_id\": \"93799964\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Zreechxnn\"}", + "is_super_admin": null, + "created_at": "2025-11-24 04:41:28.835657+00", + "updated_at": "2025-11-24 04:41:29.866092+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 04:41:28.841641+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 458, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e582bdf9-209e-4aa0-b052-043a664a5a27", + "aud": "authenticated", + "role": "authenticated", + "email": "ytbchanelsukiran@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:31:37.10495+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:39:01.19022+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"206762171\", \"email\": \"ytbchanelsukiran@gmail.com\", \"user_name\": \"cobaan1999\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/206762171?v=4\", \"provider_id\": \"206762171\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"cobaan1999\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:31:37.095616+00", + "updated_at": "2025-11-23 14:39:01.191709+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:31:37.10495+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 459, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e59ed718-2a1b-4f86-a4e1-6063384a5fc1", + "aud": "authenticated", + "role": "authenticated", + "email": "putraaldhyansyah@gmail.com", + "encrypted_password": "$2a$10$xNsO4bzVEftI3Yo.v/klROe/X5PAigX1lLRcn1TLqXKriq/XfC6Eq", + "email_confirmed_at": "2025-11-23 15:03:44.738592+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 15:02:16.89649+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:24:16.455103+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e59ed718-2a1b-4f86-a4e1-6063384a5fc1\", \"email\": \"putraaldhyansyah@gmail.com\", \"username\": \"aldhyansyah_307\", \"display_name\": \"PUTRA ALDHYANSYAH\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 15:02:16.889855+00", + "updated_at": "2025-11-24 13:24:16.46029+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:03:44.738592+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 460, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e5d0bd59-1f07-49b7-8242-4ddb620e2a8b", + "aud": "authenticated", + "role": "authenticated", + "email": "gilarwaluyo@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:24:47.526705+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:24:48.948815+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"130768364\", \"name\": \"Abimanyu Gilar\", \"email\": \"gilarwaluyo@gmail.com\", \"full_name\": \"Abimanyu Gilar\", \"user_name\": \"AbimanyuGilar\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/130768364?v=4\", \"provider_id\": \"130768364\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"AbimanyuGilar\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:24:47.514489+00", + "updated_at": "2025-11-24 12:24:48.952483+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:24:47.526705+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 461, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e65bf229-f745-41b4-a54e-875a765aa745", + "aud": "authenticated", + "role": "authenticated", + "email": "noisyboyss887@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:35:59.452296+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:36:00.337566+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"92195557\", \"name\": \"Kangmas Darr\", \"email\": \"noisyboyss887@gmail.com\", \"full_name\": \"Kangmas Darr\", \"user_name\": \"Darrma23\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/92195557?v=4\", \"provider_id\": \"92195557\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Darrma23\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:35:59.44542+00", + "updated_at": "2025-11-23 15:36:00.340226+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:35:59.452296+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 462, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e68e50fd-fc75-42a0-8b84-70bfaf508d01", + "aud": "authenticated", + "role": "authenticated", + "email": "farelfebryan06@gmail.com", + "encrypted_password": "$2a$10$TRdVOzKQZLMNhGJ3jFYEQexhm2hetIme97rl4FFXtyO9dicxKfN3K", + "email_confirmed_at": "2025-11-23 14:19:59.057878+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:19:46.18137+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:08:59.16467+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e68e50fd-fc75-42a0-8b84-70bfaf508d01\", \"email\": \"farelfebryan06@gmail.com\", \"username\": \"farelfebryan\", \"display_name\": \"Farel Febryan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:19:46.176855+00", + "updated_at": "2025-11-24 07:43:08.633898+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:19:59.057878+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 463, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e6a9a555-7af1-4abb-8ad7-1162e3be258a", + "aud": "authenticated", + "role": "authenticated", + "email": "wisdom.wahyuaji@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:52:12.915403+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:52:13.817805+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"195734599\", \"name\": \"Wisdom Wahyu Aji\", \"email\": \"wisdom.wahyuaji@gmail.com\", \"full_name\": \"Wisdom Wahyu Aji\", \"user_name\": \"Zecodark\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/195734599?v=4\", \"provider_id\": \"195734599\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Zecodark\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:52:12.860536+00", + "updated_at": "2025-11-24 09:01:55.566877+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:52:12.915403+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 464, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e6c844ce-a58a-414e-b0e3-8daf404a79f5", + "aud": "authenticated", + "role": "authenticated", + "email": "b19marcel@gmail.com", + "encrypted_password": "$2a$10$j40ee9kCkJzUItCB9udfM.XXsfeeXOvuFv9XOrmUcfoYNd3GEX57K", + "email_confirmed_at": "2025-11-23 13:56:11.338024+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:55:28.177035+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:56:27.879104+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e6c844ce-a58a-414e-b0e3-8daf404a79f5\", \"email\": \"b19marcel@gmail.com\", \"username\": \"marcel\", \"display_name\": \"Marcelq\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:55:28.170461+00", + "updated_at": "2025-11-23 13:56:27.882566+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:56:11.338024+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 465, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e725132c-af86-4da9-a220-57288a436ab2", + "aud": "authenticated", + "role": "authenticated", + "email": "devakhri.farhan@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:11:27.022382+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:37:08.059288+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"214945854\", \"name\": \"Devakhri Farhan \", \"email\": \"devakhri.farhan@gmail.com\", \"full_name\": \"Devakhri Farhan \", \"user_name\": \"devakhri\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/214945854?v=4\", \"provider_id\": \"214945854\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"devakhri\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:11:27.017003+00", + "updated_at": "2025-11-24 16:37:08.06706+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:11:27.022382+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 466, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e7bec056-7f63-4642-a763-afa39c3c340e", + "aud": "authenticated", + "role": "authenticated", + "email": "haikaljitra35@gmail.com", + "encrypted_password": "$2a$10$.nHoBGntQvPnaKOsS86aHOcgrNoJpII1dWwd7xK4lP/9ybYmRYJF6", + "email_confirmed_at": "2025-11-24 03:59:08.715208+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 03:58:48.080696+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:09:10.484244+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e7bec056-7f63-4642-a763-afa39c3c340e\", \"email\": \"haikaljitra35@gmail.com\", \"username\": \"haikal_jt\", \"display_name\": \"Hircine\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 03:58:48.073681+00", + "updated_at": "2025-11-24 13:09:10.490728+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:59:08.715208+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 467, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e8d69460-4eb9-48c7-a921-4738ad7c8dc9", + "aud": "authenticated", + "role": "authenticated", + "email": "evanluis198@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 16:52:13.622173+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 16:52:14.3952+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"101246500\", \"name\": \"Evan Luis Tanjung\", \"email\": \"evanluis198@gmail.com\", \"full_name\": \"Evan Luis Tanjung\", \"user_name\": \"VanZPro\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/101246500?v=4\", \"provider_id\": \"101246500\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"VanZPro\"}", + "is_super_admin": null, + "created_at": "2025-11-23 16:52:13.59695+00", + "updated_at": "2025-11-23 16:52:14.405426+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 16:52:13.622173+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 468, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e913c217-2dde-4498-909c-4b2d5afd89d1", + "aud": "authenticated", + "role": "authenticated", + "email": "ikhwannurrizkif@gmail.com", + "encrypted_password": "$2a$10$5Ui8ZN8Ai0mDjFHL3Rfj3eyOpUyCUfmPD149whSp/OKnKv8jfWpXi", + "email_confirmed_at": "2025-11-23 13:58:27.304971+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:57:58.581494+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:58:44.408584+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e913c217-2dde-4498-909c-4b2d5afd89d1\", \"email\": \"ikhwannurrizkif@gmail.com\", \"username\": \"thom\", \"display_name\": \"Ikhwan\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:57:58.576124+00", + "updated_at": "2025-11-23 13:58:44.410999+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:58:27.304971+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 469, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e98fbabe-4120-4d16-b11f-e447467c8ef9", + "aud": "authenticated", + "role": "authenticated", + "email": "ryandraa27@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:37:13.840559+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:37:14.743906+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"215476193\", \"email\": \"ryandraa27@gmail.com\", \"user_name\": \"rianszzz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/215476193?v=4\", \"provider_id\": \"215476193\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rianszzz\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:37:13.835436+00", + "updated_at": "2025-11-23 22:20:44.431751+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:37:13.840559+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 470, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e99519f0-630b-4293-8487-a17d667fa708", + "aud": "authenticated", + "role": "authenticated", + "email": "mtaufikska@gmail.com", + "encrypted_password": "$2a$10$1K9c1k4SR1kScKfTpDxTeuV4JbNdKnGXFdc8/400VAmPbRQ7aJ36q", + "email_confirmed_at": "2025-11-23 13:25:30.383944+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:24:06.426169+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:27:44.156492+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e99519f0-630b-4293-8487-a17d667fa708\", \"email\": \"mtaufikska@gmail.com\", \"username\": \"mtaufiksaadi\", \"display_name\": \"Saadi28\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:24:06.421075+00", + "updated_at": "2025-11-23 13:27:44.158603+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:25:30.383944+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 471, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e99abe65-5ce7-49c5-930b-b7e456d55661", + "aud": "authenticated", + "role": "authenticated", + "email": "tudebaliirl@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:02:35.698219+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 12:02:36.703966+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"125188681\", \"name\": \"TudeStillLearning!\", \"email\": \"tudebaliirl@gmail.com\", \"full_name\": \"TudeStillLearning!\", \"user_name\": \"TudeOrangBiasa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/125188681?v=4\", \"provider_id\": \"125188681\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"TudeOrangBiasa\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:02:35.687554+00", + "updated_at": "2025-11-24 12:02:36.719093+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:02:35.698219+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 472, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e9b65cdd-9c7c-471d-97ac-b02f0434e87f", + "aud": "authenticated", + "role": "authenticated", + "email": "adam.daniamm@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 03:50:42.463622+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:50:44.428892+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"199589998\", \"email\": \"adam.daniamm@gmail.com\", \"user_name\": \"daniam-id\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/199589998?v=4\", \"provider_id\": \"199589998\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"daniam-id\"}", + "is_super_admin": null, + "created_at": "2025-11-24 03:50:42.45208+00", + "updated_at": "2025-11-24 11:11:35.273375+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 03:50:42.463622+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 473, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e9bc3d6c-67af-4687-8b3b-a122a93710ef", + "aud": "authenticated", + "role": "authenticated", + "email": "boboi0704@gmail.com", + "encrypted_password": "$2a$10$HQ0/0ofySbKDfVb7SN2sxeLTCmwa8.XNDrTZb.jS7jcXfonYvFp2m", + "email_confirmed_at": "2025-11-18 12:27:11.936361+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-18 12:26:48.672659+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-18 12:27:38.745681+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"e9bc3d6c-67af-4687-8b3b-a122a93710ef\", \"email\": \"boboi0704@gmail.com\", \"username\": \"boboi\", \"display_name\": \"boboiboy\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-18 12:26:48.635556+00", + "updated_at": "2025-11-20 13:17:54.792024+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-18 12:27:11.936361+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 474, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "e9ef0f76-533a-4016-ab14-420934da3fe3", + "aud": "authenticated", + "role": "authenticated", + "email": "nathantanusubroto15@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:17:06.877717+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:19:37.286492+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"144517602\", \"email\": \"nathantanusubroto15@gmail.com\", \"user_name\": \"Wyze00\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/144517602?v=4\", \"provider_id\": \"144517602\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Wyze00\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:17:06.86993+00", + "updated_at": "2025-11-23 15:19:37.28964+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:17:06.877717+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 475, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "eab56176-5f01-4ff2-8dca-51bebf7771fc", + "aud": "authenticated", + "role": "authenticated", + "email": "mikmself@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 09:10:14.475124+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 09:10:15.004711+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"52022948\", \"name\": \"Muhamad Irga Khoirul Mahfis\", \"email\": \"mikmself@gmail.com\", \"full_name\": \"Muhamad Irga Khoirul Mahfis\", \"user_name\": \"mikmself\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/52022948?v=4\", \"provider_id\": \"52022948\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"mikmself\"}", + "is_super_admin": null, + "created_at": "2025-11-24 09:10:14.452874+00", + "updated_at": "2025-11-24 09:10:15.007939+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 09:10:14.475124+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 476, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "eac6a2e3-017f-4c92-ae73-38bc43520640", + "aud": "authenticated", + "role": "authenticated", + "email": "yuenvengozatheowonata@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:46:33.251199+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:46:34.763717+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"216697615\", \"name\": \"Yuenvengoza Theowonata\", \"email\": \"yuenvengozatheowonata@gmail.com\", \"full_name\": \"Yuenvengoza Theowonata\", \"user_name\": \"Theowonata\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/216697615?v=4\", \"provider_id\": \"216697615\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Theowonata\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:46:33.240111+00", + "updated_at": "2025-11-24 13:46:34.765604+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:46:33.251199+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 477, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "eb0176ef-9cd5-474d-9bc2-115afb6eb831", + "aud": "authenticated", + "role": "authenticated", + "email": "dexangga06@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 22:23:52.414331+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 22:23:53.780929+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"239098050\", \"email\": \"dexangga06@gmail.com\", \"user_name\": \"dexangga06-png\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/239098050?v=4\", \"provider_id\": \"239098050\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"dexangga06-png\"}", + "is_super_admin": null, + "created_at": "2025-11-23 22:23:52.374651+00", + "updated_at": "2025-11-23 22:23:53.794829+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 22:23:52.414331+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 478, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "eb2c7101-f5d4-453c-80e8-1f3f77d350dc", + "aud": "authenticated", + "role": "authenticated", + "email": "reeimu28@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:28:15.52584+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:28:17.740356+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"242864311\", \"name\": \"Moruten\", \"email\": \"reeimu28@gmail.com\", \"full_name\": \"Moruten\", \"user_name\": \"SayonaraMoruten\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/242864311?v=4\", \"provider_id\": \"242864311\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"SayonaraMoruten\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:28:15.520533+00", + "updated_at": "2025-11-24 11:49:09.506638+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:28:15.52584+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 479, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "eb350f16-56c0-4e05-a483-7300ab363c6b", + "aud": "authenticated", + "role": "authenticated", + "email": "henryfaaa@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 10:01:01.025408+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 10:01:02.195527+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"197408737\", \"email\": \"henryfaaa@gmail.com\", \"user_name\": \"henryfaaa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/197408737?v=4\", \"provider_id\": \"197408737\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"henryfaaa\"}", + "is_super_admin": null, + "created_at": "2025-11-24 10:01:01.007487+00", + "updated_at": "2025-11-24 14:26:30.401557+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 10:01:01.025408+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 480, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ec3d9492-cc18-497e-b63a-a1c06281bcaa", + "aud": "authenticated", + "role": "authenticated", + "email": "kelvinlihandy2005@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 13:44:29.946204+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:44:30.831384+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"145785294\", \"name\": \"Kelvin Lihandy\", \"email\": \"kelvinlihandy2005@gmail.com\", \"full_name\": \"Kelvin Lihandy\", \"user_name\": \"KelvinLihandy\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/145785294?v=4\", \"provider_id\": \"145785294\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"KelvinLihandy\"}", + "is_super_admin": null, + "created_at": "2025-11-24 13:44:29.934864+00", + "updated_at": "2025-11-24 13:44:30.838641+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 13:44:29.946204+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 481, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ece0ce22-4193-46f0-af02-d0153e896ee4", + "aud": "authenticated", + "role": "authenticated", + "email": "alyssashane2607@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:46:26.170427+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:46:27.124153+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"245708993\", \"email\": \"alyssashane2607@gmail.com\", \"user_name\": \"alyssashanek\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/245708993?v=4\", \"provider_id\": \"245708993\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"alyssashanek\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:46:26.165418+00", + "updated_at": "2025-11-23 14:46:27.12585+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:46:26.170427+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 482, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ee2aff01-ddc0-40fd-afda-db8e0c0e9556", + "aud": "authenticated", + "role": "authenticated", + "email": "yandrajafarsidiq8@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:33:18.254555+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 15:08:47.893177+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"119145448\", \"name\": \"Yandra Jafar Sidiq\", \"email\": \"yandrajafarsidiq8@gmail.com\", \"full_name\": \"Yandra Jafar Sidiq\", \"user_name\": \"yandrajs\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/119145448?v=4\", \"provider_id\": \"119145448\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"yandrajs\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:33:18.248027+00", + "updated_at": "2025-11-24 15:08:47.904526+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:33:18.254555+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 483, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "eef4fdd0-0198-4749-b099-0d558ab2ce22", + "aud": "authenticated", + "role": "authenticated", + "email": "rikogans754@gmail.com", + "encrypted_password": "$2a$10$1Rvv2L8I5kpYObLc6GjraOvBUBjB4jMaZGVT5XpnHSxPpPpfXXvUC", + "email_confirmed_at": "2025-11-23 13:27:04.182227+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:26:06.267904+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:26:35.683294+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"eef4fdd0-0198-4749-b099-0d558ab2ce22\", \"email\": \"rikogans754@gmail.com\", \"username\": \"tedu\", \"display_name\": \"ixikiwir\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:26:06.260764+00", + "updated_at": "2025-11-24 02:26:35.690836+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:27:04.182227+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 484, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "ef13c12f-2cca-4ddf-9dad-3d387a89bbf8", + "aud": "authenticated", + "role": "authenticated", + "email": "arkandi.2020@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 02:38:47.771489+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:38:50.345973+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"138979992\", \"name\": \"Muhammad Arkandi Syahputra Santosa\", \"email\": \"arkandi.2020@gmail.com\", \"full_name\": \"Muhammad Arkandi Syahputra Santosa\", \"user_name\": \"lemaopisang\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/138979992?v=4\", \"provider_id\": \"138979992\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"lemaopisang\"}", + "is_super_admin": null, + "created_at": "2025-11-24 02:38:47.757386+00", + "updated_at": "2025-11-24 07:21:50.186396+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 02:38:47.771489+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 485, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f01ba8b4-7ee2-4561-bc22-73bbfb712ea0", + "aud": "authenticated", + "role": "authenticated", + "email": "alfaris.mgk@gmail.com", + "encrypted_password": "$2a$10$XjpQDmLTnGyEA8nWhczdoO38J5C2KwqMZt7Rpe5keyBJ9Mq4zcg8u", + "email_confirmed_at": "2025-11-24 07:40:05.078876+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 07:39:47.661122+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:46:53.177825+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"f01ba8b4-7ee2-4561-bc22-73bbfb712ea0\", \"email\": \"alfaris.mgk@gmail.com\", \"username\": \"hatiyangraya\", \"display_name\": \"khaical\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 07:39:47.652386+00", + "updated_at": "2025-11-24 07:46:53.184028+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:40:05.078876+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 486, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f05211c3-aa26-473b-a6a4-225424349e81", + "aud": "authenticated", + "role": "authenticated", + "email": "bilorpanas@gmail.com", + "encrypted_password": "$2a$10$xzViWq9Rw9uXIrspT54ZRuEwCvlYIW1bmtr5ZKzgrw.0VmKeEHqUW", + "email_confirmed_at": "2025-11-23 13:45:39.920504+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 13:44:40.130937+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:45:42.973134+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"f05211c3-aa26-473b-a6a4-225424349e81\", \"email\": \"bilorpanas@gmail.com\", \"username\": \"lanx\", \"display_name\": \"Elang\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 13:44:40.073635+00", + "updated_at": "2025-11-23 22:04:18.70325+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:45:39.920504+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 487, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f0cace35-b865-4475-9ddb-5fce24f655f2", + "aud": "authenticated", + "role": "authenticated", + "email": "limakaki881@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:37:11.508147+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:37:15.384464+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"123475989\", \"name\": \"yth.mas.kanjeng.gus.mas.lui.s.pd.kom.h.i.alm.h.lc.hc.pc.amd.intel.ndx.aka.\", \"email\": \"limakaki881@gmail.com\", \"full_name\": \"yth.mas.kanjeng.gus.mas.lui.s.pd.kom.h.i.alm.h.lc.hc.pc.amd.intel.ndx.aka.\", \"user_name\": \"luiii24\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/123475989?v=4\", \"provider_id\": \"123475989\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"luiii24\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:37:11.502648+00", + "updated_at": "2025-11-23 17:19:03.357201+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:37:11.508147+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 488, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f1df8edd-2549-4c98-be46-01584aa134eb", + "aud": "authenticated", + "role": "authenticated", + "email": "arvanardana1@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:38:45.774691+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:03:01.286727+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"113536365\", \"name\": \"Arvan Ardana\", \"email\": \"arvanardana1@gmail.com\", \"full_name\": \"Arvan Ardana\", \"user_name\": \"arvardy184\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/113536365?v=4\", \"provider_id\": \"113536365\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"arvardy184\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:38:45.767762+00", + "updated_at": "2025-11-24 08:18:26.065043+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:38:45.774691+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 489, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f26c75f5-6ae7-446b-aa47-695ba13e7c7f", + "aud": "authenticated", + "role": "authenticated", + "email": "farreldiego29@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:12:29.954004+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 07:12:31.038546+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"177464803\", \"name\": \"Farrel Diego\", \"email\": \"farreldiego29@gmail.com\", \"full_name\": \"Farrel Diego\", \"user_name\": \"farrel-codenoob29\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/177464803?v=4\", \"provider_id\": \"177464803\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"farrel-codenoob29\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:12:29.918967+00", + "updated_at": "2025-11-24 07:12:31.051311+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:12:29.954004+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 490, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f34efb80-ad1d-434f-a319-e1d54973ff12", + "aud": "authenticated", + "role": "authenticated", + "email": "wizzkingchannel@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:51:51.590495+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:51:52.427097+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"138230201\", \"name\": \"HabiebAnugrah\", \"email\": \"wizzkingchannel@gmail.com\", \"full_name\": \"HabiebAnugrah\", \"user_name\": \"WizardInfinity\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/138230201?v=4\", \"provider_id\": \"138230201\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"WizardInfinity\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:51:51.58339+00", + "updated_at": "2025-11-23 13:51:52.433717+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:51:51.590495+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 491, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f377d789-ecf1-4a12-b72b-a8ffe30cc123", + "aud": "authenticated", + "role": "authenticated", + "email": "adityakurniasaputra903@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:15:19.093488+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:15:21.029024+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"79754864\", \"name\": \"Kurnias\", \"email\": \"adityakurniasaputra903@gmail.com\", \"full_name\": \"Kurnias\", \"user_name\": \"adityakurnias\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/79754864?v=4\", \"provider_id\": \"79754864\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"adityakurnias\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:15:19.067932+00", + "updated_at": "2025-11-24 11:15:21.050032+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:15:19.093488+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 492, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f3a25278-ec1d-496a-a89c-030c5c521111", + "aud": "authenticated", + "role": "authenticated", + "email": "dav1nalifianda@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 11:54:05.944588+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 11:54:07.361437+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"139842815\", \"name\": \"Davin Alifianda Adytia\", \"email\": \"dav1nalifianda@gmail.com\", \"full_name\": \"Davin Alifianda Adytia\", \"user_name\": \"davinalifianda123\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/139842815?v=4\", \"provider_id\": \"139842815\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"davinalifianda123\"}", + "is_super_admin": null, + "created_at": "2025-11-24 11:54:05.939076+00", + "updated_at": "2025-11-24 17:26:13.522281+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 11:54:05.944588+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 493, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f3fef42a-9d51-40d6-b6e7-59f25bf068c8", + "aud": "authenticated", + "role": "authenticated", + "email": "rifqinanda60@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 01:10:03.899994+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 01:10:04.873876+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"108160877\", \"email\": \"rifqinanda60@gmail.com\", \"user_name\": \"rifqinanda27\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/108160877?v=4\", \"provider_id\": \"108160877\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rifqinanda27\"}", + "is_super_admin": null, + "created_at": "2025-11-24 01:10:03.882374+00", + "updated_at": "2025-11-24 02:22:18.744878+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 01:10:03.899994+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 494, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f40b14d5-0cc4-4605-9893-8f27dd34de71", + "aud": "authenticated", + "role": "authenticated", + "email": "notmadz132@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 21:13:47.407914+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 21:13:48.397334+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"150493418\", \"name\": \"Mu'adz Abdulloh\", \"email\": \"notmadz132@gmail.com\", \"full_name\": \"Mu'adz Abdulloh\", \"user_name\": \"MadZMana\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/150493418?v=4\", \"provider_id\": \"150493418\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MadZMana\"}", + "is_super_admin": null, + "created_at": "2025-11-23 21:13:47.374645+00", + "updated_at": "2025-11-23 21:13:48.423075+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 21:13:47.407914+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 495, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f44ce041-e64c-4cbd-a104-83964aa37ccb", + "aud": "authenticated", + "role": "authenticated", + "email": "qodria589@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:01:35.734927+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:01:37.354376+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"219712645\", \"email\": \"qodria589@gmail.com\", \"user_name\": \"Al-Qodri\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/219712645?v=4\", \"provider_id\": \"219712645\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Al-Qodri\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:01:35.703453+00", + "updated_at": "2025-11-24 10:23:14.212512+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:01:35.734927+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 496, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f47cacb7-e099-4816-96c9-77f858414235", + "aud": "authenticated", + "role": "authenticated", + "email": "fahrezaxgamer@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 08:52:34.835686+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 13:52:42.219519+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"114177911\", \"name\": \"Fahreza Pratama Hidayat\", \"email\": \"fahrezaxgamer@gmail.com\", \"full_name\": \"Fahreza Pratama Hidayat\", \"user_name\": \"fahrezapratamahidayat\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/114177911?v=4\", \"provider_id\": \"114177911\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fahrezapratamahidayat\"}", + "is_super_admin": null, + "created_at": "2025-11-24 08:52:34.813802+00", + "updated_at": "2025-11-24 13:52:42.224207+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 08:52:34.835686+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 497, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f57ac77c-7ea9-4b92-aeb5-a7131a5052dc", + "aud": "authenticated", + "role": "authenticated", + "email": "dyas@live.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:22:34.229242+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:22:35.975429+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"18554051\", \"name\": \"Drestanto Muhammad Dyasputro\", \"email\": \"dyas@live.com\", \"full_name\": \"Drestanto Muhammad Dyasputro\", \"user_name\": \"drestanto\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/18554051?v=4\", \"provider_id\": \"18554051\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"drestanto\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:22:34.222566+00", + "updated_at": "2025-11-23 14:22:35.977214+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:22:34.229242+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 498, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f6938963-132b-4471-90c1-2a252923b89f", + "aud": "authenticated", + "role": "authenticated", + "email": "ahmadgozali4040@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 07:00:34.215531+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 14:26:21.790019+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"92248772\", \"name\": \"Ahmad Ghozali\", \"email\": \"ahmadgozali4040@gmail.com\", \"full_name\": \"Ahmad Ghozali\", \"user_name\": \"agoritma\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/92248772?v=4\", \"provider_id\": \"92248772\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"agoritma\"}", + "is_super_admin": null, + "created_at": "2025-11-24 07:00:34.048721+00", + "updated_at": "2025-11-24 14:26:21.79587+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 07:00:34.215531+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 499, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f786208b-28cc-4484-935f-b88f2f75d6d0", + "aud": "authenticated", + "role": "authenticated", + "email": "jony.huang.me@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 16:08:15.044759+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 16:08:16.895754+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"230301573\", \"name\": \"Jony Wijaya\", \"email\": \"jony.huang.me@gmail.com\", \"full_name\": \"Jony Wijaya\", \"user_name\": \"joy-arz\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/230301573?v=4\", \"provider_id\": \"230301573\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"joy-arz\"}", + "is_super_admin": null, + "created_at": "2025-11-24 16:08:15.035747+00", + "updated_at": "2025-11-24 17:24:03.623601+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 16:08:15.044759+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 500, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f7b6ebf3-3bce-46df-b18f-22763e552e6e", + "aud": "authenticated", + "role": "authenticated", + "email": "afrizaahmad18@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:33:17.666834+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 04:12:29.57591+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"128106526\", \"name\": \"normies\", \"email\": \"afrizaahmad18@gmail.com\", \"full_name\": \"normies\", \"user_name\": \"Sanjaee\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/128106526?v=4\", \"provider_id\": \"128106526\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Sanjaee\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:33:17.661685+00", + "updated_at": "2025-11-24 14:35:49.876079+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:33:17.666834+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 501, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f833772b-a037-48ae-90eb-c3b02a06a3b9", + "aud": "authenticated", + "role": "authenticated", + "email": "satyabr147@gmail.com", + "encrypted_password": "$2a$10$AMh2qelUrdPCf4n8LK3wieROR8LRavRZBXllcYDcULsivqMxh6/dS", + "email_confirmed_at": "2025-11-23 23:59:35.403075+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 23:58:03.991425+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 23:59:56.948531+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"f833772b-a037-48ae-90eb-c3b02a06a3b9\", \"email\": \"satyabr147@gmail.com\", \"username\": \"satya123\", \"display_name\": \"Str176\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 23:58:03.912646+00", + "updated_at": "2025-11-23 23:59:56.952567+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 23:59:35.403075+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 502, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f83bbabf-f6e8-4023-9626-2a97a0c4c994", + "aud": "authenticated", + "role": "authenticated", + "email": "gmrikza05@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 05:16:34.261342+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 05:17:55.200528+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"160980358\", \"email\": \"gmrikza05@gmail.com\", \"user_name\": \"SaKaSe2\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/160980358?v=4\", \"provider_id\": \"160980358\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"SaKaSe2\"}", + "is_super_admin": null, + "created_at": "2025-11-24 05:16:34.249722+00", + "updated_at": "2025-11-24 05:17:55.202271+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 05:16:34.261342+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 503, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "f8cc3af4-3a3a-4a3d-8314-972725366ffb", + "aud": "authenticated", + "role": "authenticated", + "email": "andikadibya92@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 00:41:32.67032+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 00:41:33.274447+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"71801916\", \"name\": \"Andika Dibya Azzumardi\", \"email\": \"andikadibya92@gmail.com\", \"full_name\": \"Andika Dibya Azzumardi\", \"user_name\": \"andikadibyaa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/71801916?v=4\", \"provider_id\": \"71801916\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"andikadibyaa\"}", + "is_super_admin": null, + "created_at": "2025-11-24 00:41:32.660467+00", + "updated_at": "2025-11-24 05:30:54.311976+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:41:32.67032+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 504, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fa57208f-b1a7-4766-9067-d4531833f4b9", + "aud": "authenticated", + "role": "authenticated", + "email": "rizkynursanto48@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:08:33.028818+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:08:35.311619+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"88314302\", \"name\": \"Rizky Adi N.\", \"email\": \"rizkynursanto48@gmail.com\", \"full_name\": \"Rizky Adi N.\", \"user_name\": \"rizxyu\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/88314302?v=4\", \"provider_id\": \"88314302\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rizxyu\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:08:33.0234+00", + "updated_at": "2025-11-24 12:57:40.047083+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:08:33.028818+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 505, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fa7f0fc6-7449-42ac-a80f-560960345ac4", + "aud": "authenticated", + "role": "authenticated", + "email": "muh.indaarr@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:04:25.325682+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:04:26.425252+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"184568643\", \"name\": \"Muhammad Indar\", \"email\": \"muh.indaarr@gmail.com\", \"full_name\": \"Muhammad Indar\", \"user_name\": \"MuhammadIndar\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/184568643?v=4\", \"provider_id\": \"184568643\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"MuhammadIndar\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:04:25.276171+00", + "updated_at": "2025-11-24 00:10:53.875765+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:04:25.325682+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 506, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fae5c5a9-6a26-48d6-b04d-68ebf4d81e7b", + "aud": "authenticated", + "role": "authenticated", + "email": "laluarya633@gmail.com", + "encrypted_password": "$2a$10$9yf.N1bzNQ347T.U4KA5nOj8XmvyjpIVCNdnxHO0D5I3cmDTEyhre", + "email_confirmed_at": "2025-11-23 14:03:49.584627+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-23 14:03:33.084117+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:03:59.415328+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"fae5c5a9-6a26-48d6-b04d-68ebf4d81e7b\", \"email\": \"laluarya633@gmail.com\", \"username\": \"aryaadjiee21\", \"display_name\": \"Lalu Arya Mukti Adjie\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-23 14:03:33.071608+00", + "updated_at": "2025-11-23 14:03:59.418682+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:03:49.584627+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 507, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fbc4c505-01ef-40b2-a257-c2430fe1bdc5", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadfadlanrais@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:41:27.330184+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:41:29.344835+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"100011236\", \"email\": \"muhammadfadlanrais@gmail.com\", \"user_name\": \"FadlanRais\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/100011236?v=4\", \"provider_id\": \"100011236\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"FadlanRais\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:41:27.321942+00", + "updated_at": "2025-11-24 12:44:45.059421+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:41:27.330184+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 508, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fc00d1bf-65da-431b-9994-52a3cfc88273", + "aud": "authenticated", + "role": "authenticated", + "email": "rifkybujanabisri@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-17 15:16:57.446139+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 02:51:32.910424+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"54743002\", \"name\": \"Rifky Bujana Bisri\", \"email\": \"rifkybujanabisri@gmail.com\", \"full_name\": \"Rifky Bujana Bisri\", \"user_name\": \"rifkybujana\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/54743002?v=4\", \"provider_id\": \"54743002\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"rifkybujana\"}", + "is_super_admin": null, + "created_at": "2025-11-17 15:16:57.43873+00", + "updated_at": "2025-11-24 07:54:08.03787+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-17 15:16:57.446139+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 509, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fc05d2d3-0a55-4407-b20e-99d7bf24a3ec", + "aud": "authenticated", + "role": "authenticated", + "email": "alazmimuhammadhabib@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 12:11:30.081801+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 17:58:07.076736+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"134584587\", \"name\": \"Izumi\", \"email\": \"alazmimuhammadhabib@gmail.com\", \"full_name\": \"Izumi\", \"user_name\": \"Izumiazmi\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/134584587?v=4\", \"provider_id\": \"134584587\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Izumiazmi\"}", + "is_super_admin": null, + "created_at": "2025-11-24 12:11:30.076007+00", + "updated_at": "2025-11-24 17:58:07.114166+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 12:11:30.081801+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 510, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fc22e953-b532-48b2-be6a-0fbc3b3774fb", + "aud": "authenticated", + "role": "authenticated", + "email": "scamgarapan@gmail.com", + "encrypted_password": "$2a$10$ZqtJo08rmVxMmMYWj9B9Tu.DTWWd5wdBaO.vw4HzaxQN3HcgNtcui", + "email_confirmed_at": "2025-11-24 06:43:40.834285+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": "2025-11-24 06:43:10.756625+00", + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 06:43:46.86636+00", + "raw_app_meta_data": "{\"provider\": \"email\", \"providers\": [\"email\"]}", + "raw_user_meta_data": "{\"sub\": \"fc22e953-b532-48b2-be6a-0fbc3b3774fb\", \"email\": \"scamgarapan@gmail.com\", \"username\": \"alok_jumpshot\", \"display_name\": \"Alokjumpshot\", \"email_verified\": true, \"phone_verified\": false}", + "is_super_admin": null, + "created_at": "2025-11-24 06:43:10.658944+00", + "updated_at": "2025-11-24 06:43:46.871563+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 06:43:40.834285+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 511, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fc701b59-0510-44f3-a85e-0cd22e9f777f", + "aud": "authenticated", + "role": "authenticated", + "email": "fajaralfrzi@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-24 00:19:05.980255+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-24 03:13:17.774849+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"101091656\", \"email\": \"fajaralfrzi@gmail.com\", \"user_name\": \"fajaralfa\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/101091656?v=4\", \"provider_id\": \"101091656\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"fajaralfa\"}", + "is_super_admin": null, + "created_at": "2025-11-24 00:19:05.973746+00", + "updated_at": "2025-11-24 13:02:37.831629+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-24 00:19:05.980255+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 512, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fcad381c-ab34-4f62-b6f7-4569c24625f3", + "aud": "authenticated", + "role": "authenticated", + "email": "imanwealth00@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 14:17:49.436498+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 14:17:51.401306+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"217440416\", \"name\": \"WebDevShoul\", \"email\": \"imanwealth00@gmail.com\", \"full_name\": \"WebDevShoul\", \"user_name\": \"webdevshoul\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/217440416?v=4\", \"provider_id\": \"217440416\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"webdevshoul\"}", + "is_super_admin": null, + "created_at": "2025-11-23 14:17:49.43069+00", + "updated_at": "2025-11-23 14:17:51.404457+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 14:17:49.436498+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 513, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fea8d6e4-a831-43a9-b98c-6a29c20dab53", + "aud": "authenticated", + "role": "authenticated", + "email": "muhammadalifaditya92@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 15:33:36.443356+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 15:33:37.561514+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"146421777\", \"name\": \"Alif Aditya\", \"email\": \"muhammadalifaditya92@gmail.com\", \"full_name\": \"Alif Aditya\", \"user_name\": \"lfiathan\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/146421777?v=4\", \"provider_id\": \"146421777\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"lfiathan\"}", + "is_super_admin": null, + "created_at": "2025-11-23 15:33:36.428646+00", + "updated_at": "2025-11-24 14:40:37.83977+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 15:33:36.443356+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + }, + { + "idx": 514, + "instance_id": "00000000-0000-0000-0000-000000000000", + "id": "fef16ed6-438c-44c0-9070-66d3f602beae", + "aud": "authenticated", + "role": "authenticated", + "email": "udinhilif@gmail.com", + "encrypted_password": null, + "email_confirmed_at": "2025-11-23 13:47:19.232469+00", + "invited_at": null, + "confirmation_token": "", + "confirmation_sent_at": null, + "recovery_token": "", + "recovery_sent_at": null, + "email_change_token_new": "", + "email_change": "", + "email_change_sent_at": null, + "last_sign_in_at": "2025-11-23 13:47:20.270189+00", + "raw_app_meta_data": "{\"provider\": \"github\", \"providers\": [\"github\"]}", + "raw_user_meta_data": "{\"iss\": \"https://api.github.com\", \"sub\": \"113566110\", \"name\": \"Rio Fernanda\", \"email\": \"udinhilif@gmail.com\", \"full_name\": \"Rio Fernanda\", \"user_name\": \"Djongoks\", \"avatar_url\": \"https://avatars.githubusercontent.com/u/113566110?v=4\", \"provider_id\": \"113566110\", \"email_verified\": true, \"phone_verified\": false, \"preferred_username\": \"Djongoks\"}", + "is_super_admin": null, + "created_at": "2025-11-23 13:47:19.220471+00", + "updated_at": "2025-11-23 13:47:20.271967+00", + "phone": null, + "phone_confirmed_at": null, + "phone_change": "", + "phone_change_token": "", + "phone_change_sent_at": null, + "confirmed_at": "2025-11-23 13:47:19.232469+00", + "email_change_token_current": "", + "email_change_confirm_status": 0, + "banned_until": null, + "reauthentication_token": "", + "reauthentication_sent_at": null, + "is_sso_user": false, + "deleted_at": null, + "is_anonymous": false + } +] diff --git a/libs/service/src/hooks/auth/index.ts b/libs/service/src/hooks/auth/index.ts index 255725b..2d9002e 100644 --- a/libs/service/src/hooks/auth/index.ts +++ b/libs/service/src/hooks/auth/index.ts @@ -1,5 +1,7 @@ import { supabase } from '../../supabase'; +export * from './use-auth-store'; + // Supabase GitHub OAuth hook export const useGitHubAuth = () => { const signInWithGitHub = async () => { diff --git a/libs/service/src/hooks/auth/use-auth-store.ts b/libs/service/src/hooks/auth/use-auth-store.ts new file mode 100644 index 0000000..1d5c250 --- /dev/null +++ b/libs/service/src/hooks/auth/use-auth-store.ts @@ -0,0 +1,46 @@ +import { create } from 'zustand'; +import { TLoginItem } from '../../types'; +import { SessionToken, SessionUser } from '../../storage'; + +export enum ESessionStatus { + Authenticated = 'authenticated', + Authenticating = 'authenticating', + Unauthenticated = 'unauthenticated', +} + +type SessionState = { + isLoading: boolean; + session?: TLoginItem; + status?: ESessionStatus; + setLoading: (val: boolean) => void; + setSession: (payload: TLoginItem) => void; + clearSession: () => void; +}; + +export const useAuthStore = create((set) => { + const session = SessionToken.get(); + const user = SessionUser.get(); + const isAuthenticated = !!session; + + return { + isLoading: false, + session: isAuthenticated ? { token: session.token, user } : undefined, + status: isAuthenticated + ? ESessionStatus.Authenticated + : ESessionStatus.Unauthenticated, + setLoading: (val) => set({ isLoading: val }), + setSession: (data) => { + SessionToken.set({ token: data.token }); + SessionUser.set(data.user); + set({ + session: data, + status: ESessionStatus.Authenticated, + }); + }, + clearSession: () => { + SessionToken.remove(); + SessionUser.remove(); + set({ session: undefined, status: ESessionStatus.Unauthenticated }); + }, + }; +}); diff --git a/libs/service/src/hooks/messages/index.ts b/libs/service/src/hooks/messages/index.ts index 145e457..f9b761c 100644 --- a/libs/service/src/hooks/messages/index.ts +++ b/libs/service/src/hooks/messages/index.ts @@ -1,6 +1,6 @@ import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; import { supabase } from '../../supabase'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useAuthStore } from '../auth'; import { useEffect } from 'react'; export type Message = { diff --git a/libs/service/src/hooks/teams/index.ts b/libs/service/src/hooks/teams/index.ts index c8ec689..1d339b3 100644 --- a/libs/service/src/hooks/teams/index.ts +++ b/libs/service/src/hooks/teams/index.ts @@ -1,7 +1,7 @@ import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'; import * as teamsApi from '../../api/teams'; import { supabase, getAuthenticatedClient } from '../../supabase'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useAuthStore } from '../auth'; import type { TCreateTeamRequest, TUpdateTeamRequest, diff --git a/libs/service/src/hooks/upload/index.ts b/libs/service/src/hooks/upload/index.ts index 46cd930..9b02054 100644 --- a/libs/service/src/hooks/upload/index.ts +++ b/libs/service/src/hooks/upload/index.ts @@ -1,6 +1,6 @@ import { useMutation } from '@tanstack/react-query'; import { supabase, getAuthenticatedClient } from '../../supabase'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useAuthStore } from '../auth'; // Supabase Storage-based upload hooks diff --git a/libs/service/src/hooks/users/index.ts b/libs/service/src/hooks/users/index.ts index b3de4a6..476f730 100644 --- a/libs/service/src/hooks/users/index.ts +++ b/libs/service/src/hooks/users/index.ts @@ -1,7 +1,7 @@ import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; import { userService } from '../../api/users'; import { supabase, getAuthenticatedClient } from '../../supabase'; -import { useAuthStore } from '@imphnen-frontend-service/utils'; +import { useAuthStore } from '../auth'; // Supabase-based user hooks diff --git a/libs/service/src/index.ts b/libs/service/src/index.ts index dd74201..981a008 100644 --- a/libs/service/src/index.ts +++ b/libs/service/src/index.ts @@ -3,3 +3,4 @@ export * from './hooks'; export * from './types'; export * from './schemas'; export * from './supabase'; +export * from './storage'; diff --git a/libs/service/src/storage/cookies.ts b/libs/service/src/storage/cookies.ts new file mode 100644 index 0000000..457c2c1 --- /dev/null +++ b/libs/service/src/storage/cookies.ts @@ -0,0 +1,36 @@ +import Cookies from 'js-cookie'; + +type TTokenItem = { + access_token: string; + refresh_token: string; +}; + +const TOKEN_KEY = 'token'; + +type TStoredToken = + | { + token?: TTokenItem; + } + | undefined; + +export const SessionToken = { + set: (val: TStoredToken) => { + Cookies.set(TOKEN_KEY, JSON.stringify(val), { + secure: true, + sameSite: 'Strict', + expires: 7, + }); + }, + get: (): TStoredToken => { + const token = Cookies.get(TOKEN_KEY); + if (!token) return undefined; + try { + return JSON.parse(token); + } catch { + return undefined; + } + }, + remove: () => { + Cookies.remove(TOKEN_KEY); + }, +}; diff --git a/libs/service/src/storage/index.ts b/libs/service/src/storage/index.ts new file mode 100644 index 0000000..9ecd152 --- /dev/null +++ b/libs/service/src/storage/index.ts @@ -0,0 +1,2 @@ +export * from './cookies'; +export * from './local-storage'; diff --git a/libs/service/src/storage/local-storage.ts b/libs/service/src/storage/local-storage.ts new file mode 100644 index 0000000..2bcd56a --- /dev/null +++ b/libs/service/src/storage/local-storage.ts @@ -0,0 +1,38 @@ +export type TPermissionItem = { + id: string; + name: string; + created_at: string; + updated_at: string; +}; + +type TRoleItem = { + id: string; + name: string; + created_at: string; + updated_at: string; + permissions: TPermissionItem[]; +}; + +type TUserItem = { + id: string; + avatar: string; + birthdate: string; + email: string; + fullname: string; + gender: string; + is_active: boolean; + phone_number: string; + role: TRoleItem; + bio?: string; + location?: string; + skills?: string[]; +}; + +export const SessionUser = { + set: (val?: TUserItem) => localStorage.setItem('users', JSON.stringify(val)), + get: (): TUserItem | undefined => { + const users = localStorage.getItem('users'); + return users ? JSON.parse(users) : undefined; + }, + remove: () => localStorage.removeItem('users'), +}; diff --git a/libs/utils/src/hooks/index.ts b/libs/utils/src/hooks/index.ts index 749ecb2..143d708 100644 --- a/libs/utils/src/hooks/index.ts +++ b/libs/utils/src/hooks/index.ts @@ -1,5 +1,4 @@ export * from './use-query-state'; -export * from './use-auth-store'; export * from './use-modal-login'; export * from './use-session'; export * from './use-register'; diff --git a/libs/utils/src/hooks/use-session.ts b/libs/utils/src/hooks/use-session.ts index e8759d2..86bdc75 100644 --- a/libs/utils/src/hooks/use-session.ts +++ b/libs/utils/src/hooks/use-session.ts @@ -1,5 +1,4 @@ -import { supabase } from '@imphnen-frontend-service/service'; -import { useAuthStore } from './'; +import { supabase, useAuthStore } from '@imphnen-frontend-service/service'; import { useNavigate } from 'react-router'; export const useSession = () => {